Is there a way to unregister a function from the user-functions-array? Why would anyone need this.
Well, I get function-redeclared-errors all over the place because I am basically executing the code from the same file a second time... since functions seem to be declared BEFORE the actual parsing process they collide with my engine which first parses the code (to translate custom-tags, templates and stuff like that) and then executes it... of course then all functions will be declared twice...
Is there a way to either hinder PHP from registring function up to a certain point or unregister function at runtime?