Is there a way to change PHP's source and recompile so that I can use
"." instead of "->" for the object operator? Of course, I would also
change "." (the concat operator) to "&" or "+" for the concat
operator.
I think it's as simple as editing "zend_language_ scanner.l" from the
source, changing "." to "&", and "->" to ".", then recompiling, but I
haven't tested this. Has anyone done that before?
"." instead of "->" for the object operator? Of course, I would also
change "." (the concat operator) to "&" or "+" for the concat
operator.
I think it's as simple as editing "zend_language_ scanner.l" from the
source, changing "." to "&", and "->" to ".", then recompiling, but I
haven't tested this. Has anyone done that before?
Comment