1
0
mirror of https://github.com/php/php-src.git synced 2026-03-27 01:32:22 +01:00
Files
archived-php-src/Zend/tests/bug27304.phpt
Antony Dovgal b64823deb7 fix test names
2007-05-07 17:54:12 +00:00

24 lines
290 B
PHP
Executable File

--TEST--
Bug #27304 (Static functions don't function properly)
--FILE--
<?php
class Staticexample
{
static function test()
{
var_dump(isset($this));
}
}
$b = new Staticexample();
Staticexample::test();
$b->test();
?>
===DONE===
--EXPECT--
bool(false)
bool(false)
===DONE===