<?php
$s = "foobar";
$t = $s;
$u = $s;
echo PHP_VERSION . "\n";
debug_zval_dump($s);
xdebug_debug_zval('s');
運行5.6.16混淆PHP 7引用次數
運行7.0.2
我想結果(PHP 7)應是:
string(6) "foobar" refcount(4)
s: (refcount=3, is_ref=0)="foobar"
我想知道是什麼造成了差異?需要一些解釋。非常感謝。
------更新------
Nikita Popov's - PHP 7 - 內部有什麼變化? (P41)
http://www.slideshare.net/nikita_ppv/php-7-what-changed-internally
http://php.net/manual/en/features.gc.refcounting-basics.php – devpro
@devpro這是php 5.x – Lynn
兩個都沒有改變..概念 – devpro