Anthony Ferrara
Anthony Ferrara
I'm writing some blog posts about it: http://blog.ircmaxell.com/2017/02/building-8-bit-computer.html Once I'm to a good point, I'll link and explain the code in here :)
This isn't really intended to be a production ready repository, but justification for why the current error system is a nightmare to work with... With that said, pull-requests adding new...
The problem is an array can't have a key of `"4"`. Try doing `$arr["4"] = true;` and you'll see that PHP internally converts the `"4"` into an integer. Yay to...
> Would I be mistaken in the assumption that what you're looking for here is not actually an interface, but rather the ability to write PrettyPrinter rather than PrettyPrinterAbstract in...
A few other functions are likely needed. It depends one the language standard tests need as well. But this seems like an amazing start :)
Go for it! And yes, this is definitely something I wish to support. `mysql_query` was just a proof-of-concept to demonstrate the technique.
What "spec" do you speak of?
Ok, that's fair. It's just about tweaking the detection regex. Just be aware, that 54 bits of entropy (9 characters of base64-encoded) is quite weak. I'd strongly suggest to move...
The one thing that makes me curious about the AOT approach is that it doesn't need to be good for all code. Meaning, if it doesn't target drop in replacement...
It wouldn't just be eval. It would be: * `func_get_args` * Reflection * `eval` * Variable Variables (including variable class, method, and properties) * variable includes/requires * references other than...