mirror of
https://github.com/php/php-src.git
synced 2024-12-14 20:33:36 +08:00
14 lines
239 B
PHP
14 lines
239 B
PHP
--TEST--
|
|
Overloaded function 002
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded('zend-test')) die('skip zend-test extension not loaded');
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
$a = new _ZendTestClass();
|
|
var_dump($a->{trim(" test")}());
|
|
?>
|
|
--EXPECT--
|
|
string(4) "test"
|