<?php

function …()
{
    $args = func_get_args();
    foreach ($args as $arg) {
        echo $arg . "\n";
    }
}
…("Unicode", "works", "great", "in PHP");
Пример #2
0
 public function testAliasForUnicodePlaceholderFunction()
 {
     $this->assertSame(…(), placeholder());
 }
Пример #3
0
/** @return Placeholder */
function placeholder()
{
    return …();
}