![]() |
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
Patch bug63253.patch for Scripting Engine problem Bug #63253Patch version 2012-10-12 04:15 UTC Return to Bug #63253 | Download this patchThis patch renders other patches obsolete Obsolete patches: Patch Revisions:Developer: laruence@php.netdiff --git a/Zend/zend_language_parser.y b/Zend/zend_language_parser.y index c1514c5..115e09f 100644 --- a/Zend/zend_language_parser.y +++ b/Zend/zend_language_parser.y @@ -727,6 +727,8 @@ instance_call: /* empty */ { $$ = $0; } | { zend_do_push_object(&$0 TSRMLS_CC); zend_do_begin_variable_parse(TSRMLS_C); } chaining_instance_call { zend_do_pop_object(&$$ TSRMLS_CC); zend_do_end_variable_parse(&$2, BP_VAR_R, 0 TSRMLS_CC); } + | { zend_do_begin_dynamic_function_call(&$0, 0 TSRMLS_CC); } + function_call_parameter_list { zend_do_end_function_call(&$0, &$$, &$2, 0, 1 TSRMLS_CC); zend_do_extended_fcall_end(TSRMLS_C); } instance_call { $$ = $4; } ; new_expr: |
![]() All rights reserved. |
Last updated: Sat May 03 19:01:30 2025 UTC |