gaxweb

Results 7 comments of gaxweb

Can confirm that having something like this: ``` if(!function_exists('apcu_exists')){ function apcu_exists($key){ return (bool) my_apcu_fetch($key); } } ``` in a file causes the issue to arise.

The point is that I had to dig in and find out why it breaks, and the actual reason wasn't what the thrown exception suggested. I think this might be...

This isn't actually fixed, is it? Please keep this open, if it isn't. If only to warn others of expected problems. I'm trying to parse a file (Header starts with...

Do your classes support syntax v4? If so, one could simply set UNOW/Y, pass UTF-8 encoded strings and skip the char replacement. Should theoretically come out fine. But fixing it...

I have to partially retract my statements. It works fine, if you actually feed it text in one of the explicitly supported character encodings. I was feeding it UTF-8. 🤦‍♂️...

A UTF-8 file might still come out fine as long as it contains only letters within the first 127 code points, like in English for example. So breaking execution in...

A thing worth noting is that all lines of a file are held in memory twice in the Parser: once in the `rawSegments` property and once in the `parsedfile` one....