mirror of
https://github.com/php/php-src.git
synced 2024-12-16 21:37:49 +08:00
7485978339
This is an automated migration of most SKIPIF extension_loaded checks.
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"
|