mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
14 lines
209 B
PHP
14 lines
209 B
PHP
--TEST--
|
|
Overloaded function 001
|
|
--EXTENSIONS--
|
|
zend_test
|
|
--FILE--
|
|
<?php
|
|
$o = new _ZendTestChildClass();
|
|
var_dump($o->test());
|
|
var_dump(_ZendTestClass::test());
|
|
?>
|
|
--EXPECT--
|
|
string(4) "test"
|
|
string(4) "test"
|