Home
last modified time | relevance | path

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

/PHP-5.4/Zend/
H A Dzend_language_parser.y1154 | T_INCLUDE expr { zend_do_include_or_eval(ZEND_INCLUDE, &$$, &$2 TSRMLS_CC); }
1155 | T_INCLUDE_ONCE expr { zend_do_include_or_eval(ZEND_INCLUDE_ONCE, &$$, &$2 TSRMLS_CC); }
1156 | T_EVAL '(' expr ')' { zend_do_include_or_eval(ZEND_EVAL, &$$, &$3 TSRMLS_CC); }
1157 | T_REQUIRE expr { zend_do_include_or_eval(ZEND_REQUIRE, &$$, &$2 TSRMLS_CC); }
1158 | T_REQUIRE_ONCE expr { zend_do_include_or_eval(ZEND_REQUIRE_ONCE, &$$, &$2 TSRMLS_CC); }
H A Dzend_compile.h573 void zend_do_include_or_eval(int type, znode *result, const znode *op1 TSRMLS_DC);
H A Dzend_compile.c5869 void zend_do_include_or_eval(int type, znode *result, const znode *op1 TSRMLS_DC) /* {{{ */ in zend_do_include_or_eval() function

Completed in 27 milliseconds