mirror of
https://github.com/php/php-src.git
synced 2024-11-28 12:26:37 +08:00
11 lines
209 B
PHP
11 lines
209 B
PHP
--TEST--
|
|
Cannot use built-in functions in write context (reference)
|
|
--FILE--
|
|
<?php
|
|
|
|
$ref =& strlen("foo");
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Cannot use result of built-in function in write context in %s on line %d
|