Blame | Letzte Änderung | Log anzeigen | RSS feed
--TEST--Function -- constant--SKIPIF--<?php if (function_exists('constant')) { echo 'skip'; } ?>--FILE--<?phprequire_once 'PHP/Compat.php';PHP_Compat::loadFunction('constant');$constant = 'BAR';define($constant, 'foo');echo constant($constant);?>--EXPECT--foo