1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/Zend/tests/method_exists.phpt
2005-04-16 15:36:22 +00:00

12 lines
228 B
PHP

--TEST--
method_exists() segfaults
--FILE--
<?php
class testclass { function testfunc() { } }
var_dump(method_exists('testclass','testfunc'));
var_dump(method_exists('testclass','nonfunc'));
?>
--EXPECT--
bool(true)
bool(false)