ホームページ > バックエンド開発 > PHPチュートリアル > php的函数的形参refcount为何要加2?

php的函数的形参refcount为何要加2?

WBOY
リリース: 2016-06-06 20:50:04
オリジナル
1081 人が閲覧しました

<code><?php $b = 1;
a($b);
function a($a){
   xdebug_debug_zval('a');//refcount=3 why not 2??
}
</code></code>
ログイン後にコピー
ログイン後にコピー

回复内容:

<code><?php $b = 1;
a($b);
function a($a){
   xdebug_debug_zval('a');//refcount=3 why not 2??
}
</code></code>
ログイン後にコピー
ログイン後にコピー

好吧,德问的lazyboy帮我查到答案了: 形参传值时的refcount

php的函数的形参refcount为何要加2?

例子内容来自http://julien-pauli.developpez.com/tutoriels/php/internals/variables/?page=page_6

A refcount of 2, here, is extremely non-obvious. Especially considering the above examples. So what's happening?

When a variable has a single reference (as did $var1 before it was used as an argument to debugzvaldump()), PHP's engine optimizes the manner in which it is passed to a function. Internally, PHP treats $var1 like a reference (in that the refcount is increased for the scope of this function), with the caveat that if the passed reference happens to be written to, a copy is made, but only at the moment of writing. This is known as "copy on write."

So, if debugzvaldump() happened to write to its sole parameter (and it doesn't), then a copy would be made. Until then, the parameter remains a reference, causing the refcount to be incremented to 2 for the scope of the function call.

xdebugdebugzval 是采用引用的方式传值的。

関連ラベル:
php
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート