1234567891011121314 |
- --TEST--
- Bug #80096: Segmentation fault with named arguments in nested call
- --FILE--
- <?php
- function println($arg) {
- echo $arg, "\n";
- }
- println(htmlentities("The < character is encoded as <", double_encode: false));
- ?>
- --EXPECT--
- The < character is encoded as <
|