Removing functions from the namespace

chef noodleman

New member
After searching the wiki and this forum, I haven't been able to find a way to remove functions from the namespace, once they've been added via the CLI command "using". So I was wondering, is there a way to do this? As to why someone would even want to do this (a valid question), just chalk it up to OCD. I also poked around in the settings and data folders but didn't see it saved as a property or variable anywhere.

Thanks in advance to anyone who may be able to shed some light on this.
 

heeheehee

Developer
Staff member
The only way to do it is by setting the property. Enter the following into the CLI:
PHP:
ash set_property("commandLineNamespace","")
(Yes, set_property is available as a CLI command, but if your namespace is all junked up and has, say, 'zlib,zlib', then things start going screwy.)
 
Top