zend_do_fetch_static_variable 6166 Zend/zend_compile.c 	zend_do_fetch_static_variable(varname, &value, is_ref ? ZEND_FETCH_STATIC : ZEND_FETCH_LEXICAL TSRMLS_CC);
zend_do_fetch_static_variable  474 Zend/zend_compile.h void zend_do_fetch_static_variable(znode *varname, const znode *static_assignment, int fetch_type TSRMLS_DC);
zend_do_fetch_static_variable  613 Zend/zend_language_parser.y 		static_var_list ',' T_VARIABLE { zend_do_fetch_static_variable(&$3, NULL, ZEND_FETCH_STATIC TSRMLS_CC); }
zend_do_fetch_static_variable  614 Zend/zend_language_parser.y 	|	static_var_list ',' T_VARIABLE '=' static_scalar { zend_do_fetch_static_variable(&$3, &$5, ZEND_FETCH_STATIC TSRMLS_CC); }
zend_do_fetch_static_variable  615 Zend/zend_language_parser.y 	|	T_VARIABLE  { zend_do_fetch_static_variable(&$1, NULL, ZEND_FETCH_STATIC TSRMLS_CC); }
zend_do_fetch_static_variable  616 Zend/zend_language_parser.y 	|	T_VARIABLE '=' static_scalar { zend_do_fetch_static_variable(&$1, &$3, ZEND_FETCH_STATIC TSRMLS_CC); }