mirror of
https://github.com/php/php-src.git
synced 2025-01-15 08:14:23 +08:00
14 lines
214 B
PHP
14 lines
214 B
PHP
--TEST--
|
|
Overloaded function 002
|
|
--SKIPIF--
|
|
<?php
|
|
if (!PHP_DEBUG) die("skip only run in debug version");
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
$a = new _ZendTestClass();
|
|
var_dump($a->{trim(" test")}());
|
|
?>
|
|
--EXPECT--
|
|
string(4) "test"
|