Home
last modified time | relevance | path

Searched refs:eval (Results 1 – 25 of 64) sorted by relevance

123

/PHP-5.3/tests/lang/
H A D019.phpt2 eval() test
6 eval("function test() { echo \"hey, this is a function inside an eval()!\\n\"; }");
10 eval("echo \"hey, this is a regular echo'd eval()\\n\";");
15 eval('-');
17 hey, this is a regular echo'd eval()
19 hey, this is a regular echo'd eval()
21 hey, this is a regular echo'd eval()
23 hey, this is a regular echo'd eval()
25 hey, this is a regular echo'd eval()
27 hey, this is a regular echo'd eval()
[all …]
H A Dstatic_variation_001.phpt24 eval(' static $b = array(10,11,12); ');
27 eval(' static $b = array(1,2,3); ');
30 eval(' static $b = array(4,5,6); ');
34 eval('function g2b() { static $b = array(7, 8, 9); var_dump($b); } ');
44 eval(' function f3() { static $c = array(1,2,3); var_dump($c); }');
H A Dstatic_variation_002.phpt9 eval(' static $k = array(4,5,6); ');
13 eval(' static $k = array(10,11,12); ');
25 eval('function dfg() { static $b = array(1,2,3); var_dump($b); } ');
31 eval(' Class E { function f() { static $c = array(1,2,3); var_dump($c); } }');
H A D013.phpt2 Testing eval function
7 eval($a);
H A D014.phpt2 Testing eval function inside user-defined function
6 eval($a);
H A Dinclude_variation3.phpt2 Including a file in the current script directory from eval'd code
5 require_once 'include_files/eval.inc';
H A D018.phpt2 eval() test
11 eval($message);
H A Dbug35382.phpt5 eval("echo 'Hello'; // comment");
/PHP-5.3/Zend/tests/
H A Dbug_debug_backtrace.phpt2 Bug - crash in debug_backtrace when trace starts in eval
17 eval("foo();");
25 #2 foo() called at [%s(%d) : eval()'d code:1]
26 #3 eval() called at [%s:%d]
H A Dbug31102.phpt16 eval("class $class { function __construct(){throw new Exception('$class::__construct');}}");
19 eval("class $class { function __construct(){throw new Exception('$class::__construct');}}");
31 eval("\$bug = new Test$test();");
48 Fatal error: Class 'Test3' not found in %sbug31102.php(%d) : eval()'d code on line 1
H A Dbug55007.phpt7 if ('CompileErrorClass'==$classname) eval('class CompileErrorClass { function foo() { $a[] } }');
8 …if ('MyErrorHandler'==$classname) eval('class MyErrorHandler { function __construct() { print "My …
22 Fatal error: Cannot use [] for reading in %s(%d) : eval()'d code on line %d
H A Dbug55339.phpt8 eval(';');
13 eval(<<<'EOF'
H A Dbug36513.phpt9 eval('echo "1";//2');
10 eval('echo 3; //{ 4?>5');
H A Dbug54624.phpt14 eval('
H A Dbug33116.phpt8 eval("class DefClass{}");
H A Dinstanceof.phpt7 eval("class $name {}");
/PHP-5.3/Zend/tests/constants/
H A Ddir-constant-eval.phpt2 __DIR__ constant used with eval()
5 eval('echo __DIR__ . "\n";');
/PHP-5.3/tests/classes/
H A Dabstract_static.phpt20 eval('
34 …unction fail::func() should not be abstract in %sabstract_static.php(%d) : eval()'d code on line %d
36 …mplement the remaining methods (fail::func) in %sabstract_static.php(%d) : eval()'d code on line %d
/PHP-5.3/tests/lang/include_files/
H A Deval.inc2 eval("require_once 'echo.inc';");
/PHP-5.3/ext/standard/tests/serialize/
H A D005.phpt25 eval("class TestNAOld extends TestOld {}");
28 eval("class TestNANew extends TestNew {}");
31 eval("class TestNANew2 extends TestNew {}");
37 eval('function __autoload($class_name) { do_autoload($class_name); }');
/PHP-5.3/ext/sqlite/libsqlite/src/
H A Dutil.c580 int eval = 0; in sqliteAtoF() local
590 eval = eval*10 + *z - '0'; in sqliteAtoF()
593 while( eval>=64 ){ scale *= 1.0e+64; eval -= 64; } in sqliteAtoF()
594 while( eval>=16 ){ scale *= 1.0e+16; eval -= 16; } in sqliteAtoF()
595 while( eval>=4 ){ scale *= 1.0e+4; eval -= 4; } in sqliteAtoF()
596 while( eval>=1 ){ scale *= 1.0e+1; eval -= 1; } in sqliteAtoF()
/PHP-5.3/ext/standard/tests/array/
H A Darray_map_variation16.phpt12 * echo(), array(), empty(), eval(), exit(), isset(), list(), print()
25 /*4*/ 'eval',
55 Warning: array_map() expects parameter 1 to be a valid callback, function 'eval' not found or inval…
/PHP-5.3/ext/simplexml/tests/
H A D000.phpt14 eval("var_dump(isset(\$$what));");
15 eval("var_dump((bool)\$$what);");
16 eval("var_dump(count(\$$what));");
17 eval("var_dump(\$$what);");
/PHP-5.3/tests/
H A Dquicktester.inc47 $left = eval("return ($left );");
48 $right = eval("return ($right);");
/PHP-5.3/TSRM/
H A Dtsrm.m48 if eval $cmd 2>&1 | egrep -e $1 >/dev/null ; then
13 eval $gcc_arg_name=$ac_result
16 if eval test "\$$gcc_arg_name" = "yes"; then

Completed in 32 milliseconds

123