bug80096.phpt 277 B

1234567891011121314
  1. --TEST--
  2. Bug #80096: Segmentation fault with named arguments in nested call
  3. --FILE--
  4. <?php
  5. function println($arg) {
  6. echo $arg, "\n";
  7. }
  8. println(htmlentities("The < character is encoded as &lt;", double_encode: false));
  9. ?>
  10. --EXPECT--
  11. The &lt; character is encoded as &lt;