mirror of
https://github.com/php/php-src.git
synced 2024-11-28 04:14:26 +08:00
18 lines
361 B
PHP
18 lines
361 B
PHP
--TEST--
|
|
Bug #53347 Segfault accessing static method
|
|
--FILE--
|
|
<?php class ezcConsoleOutput
|
|
{
|
|
protected static $color = array( 'gray' => 30 );
|
|
|
|
public static function isValidFormatCode( $type, $key )
|
|
{
|
|
return isset( self::${$type}[$key] );
|
|
}
|
|
}
|
|
|
|
var_dump( ezcConsoleOutput::isValidFormatCode( 'color', 'gray' ) );
|
|
?>
|
|
--EXPECT--
|
|
bool(true)
|