Home > Backend Development > PHP Tutorial > 一个不明白的有关问题

一个不明白的有关问题

WBOY
Release: 2016-06-13 13:51:01
Original
835 people have browsed it

一个不明白的问题,
像这样的程序。

PHP code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--><?php $a=array();
$a[]=array(a,b,c);
$a=c;
print_r($a);
Copy after login


我想知道的是,(array)$a那一个数组,被$a=c替换后,变成(string)$a后。
(array)$a还在内存里吗????被回收了吗。






------解决方案--------------------
还在栈里吧~
 等大牛~
------解决方案--------------------
http://topic.csdn.net/u/20111209/14/e10f5bf2-d2a7-430c-95a3-c410af6c9a64.html
------解决方案--------------------
没人啦 睡吧 明个接着~
------解决方案--------------------
为撒都是23分贴 难道是23的mm~
------解决方案--------------------
ok, 看看php的垃圾收集,

应该它在那一瞬间还在内存, 

等到垃圾收集过,就不在了,
至于垃圾什么时候收, 说不准....
------解决方案--------------------
你可以用memory_get_usage观察你的内存使用情况




------解决方案--------------------
这个看情况了,反正你是没办法再访问那个数组了,页面执行完了也肯定是没在内存了
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