fork download
  1. <?php
  2.  
  3. // your code goes here
  4. $str = 'Кушак из серебра';
  5. function anon ($string) use ($str) {
  6. return $str . $string;
  7. }
  8. echo anon(', где же он?');
Runtime error #stdin #stdout #stderr 0.02s 23320KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
PHP Parse error:  syntax error, unexpected 'use' (T_USE), expecting '{' in /home/fDf85W/prog.php on line 5