Hi Guilherme, guilhermebla...@gmail.com wrote:
Currently, there's no way to determine at runtime what is the scope of the execution. This means you can't resolve if the current instruction is happening on a top-level scope, in a class definition, namespace, function or method. Together with this (maybe even more importantly), there's no way to resolve namespaces in any way, since they only exist up to compile time (they become part of class name through string append), and no real data structure around it exists. I was forced to create a weird string check to make it work... =(
Making plain string literals in function calls be interpreted differently depending on context does not sound like a good idea to me. Functions shouldn't rely on hidden (non-syntactically-obvious) contextual information; I think func_get_args() et al. were a mistake.
I'm not sure why we'd need to resolve namespaces at runtime anyway. If you just need to pass the name of a class to a function, we have ::class. Is there some use-case I'm unaware of?
Thanks. -- Andrea Faulds http://ajf.me/ -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php