errmsg_005.phpt 284 B

123456789101112131415161718
  1. --TEST--
  2. errmsg: can't use method return value in write context
  3. --FILE--
  4. <?php
  5. class test {
  6. function foo() {
  7. return "blah";
  8. }
  9. }
  10. $t = new test;
  11. $t->foo() = 1;
  12. echo "Done\n";
  13. ?>
  14. --EXPECTF--
  15. Fatal error: Can't use method return value in write context in %s on line %d