Home
last modified time | relevance | path

Searched refs:zend_do_include_or_eval (Results 1 – 3 of 3) sorted by relevance

/PHP-5.5/Zend/
H A Dzend_language_parser.y1185 | T_INCLUDE expr { zend_do_include_or_eval(ZEND_INCLUDE, &$$, &$2 TSRMLS_CC); }
1186 | T_INCLUDE_ONCE expr { zend_do_include_or_eval(ZEND_INCLUDE_ONCE, &$$, &$2 TSRMLS_CC); }
1187 | T_EVAL '(' expr ')' { zend_do_include_or_eval(ZEND_EVAL, &$$, &$3 TSRMLS_CC); }
1188 | T_REQUIRE expr { zend_do_include_or_eval(ZEND_REQUIRE, &$$, &$2 TSRMLS_CC); }
1189 | T_REQUIRE_ONCE expr { zend_do_include_or_eval(ZEND_REQUIRE_ONCE, &$$, &$2 TSRMLS_CC); }
H A Dzend_compile.h598 void zend_do_include_or_eval(int type, znode *result, const znode *op1 TSRMLS_DC);
H A Dzend_compile.c6101 void zend_do_include_or_eval(int type, znode *result, const znode *op1 TSRMLS_DC) /* {{{ */ in zend_do_include_or_eval() function

Completed in 31 milliseconds