Home > Backend Development > PHP Tutorial > php怎么注销global定义的全局变量

php怎么注销global定义的全局变量

WBOY
Release: 2016-06-13 12:03:57
Original
1124 people have browsed it

php如何注销global定义的全局变量
最近看高性能php方面的东西,发现对于global的变量,在用完之后要注销掉,释放内存。

百度之后发现unregister_globals();  这个函数,但是不是太确定。

请大神指点一二~~
------解决方案--------------------
你多半是在 函数里 global吧? 函数跑完它就自动释放了...所以你什么也不需要做.
我估计你是跟$GLOBAL弄混了
------解决方案--------------------
global 只用在函数中声明全局变量的引用
请不要在函数外滥用,以免不必要的误会

php 在程序结束时将释放一切资源,当然包括变量

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template