為您詳解PHP開發工具的使用與分析

來源:互聯網
上載者:User
  有一段時間一直迷惑於PHP中引用的傳遞,後來查手冊及C來源程式,並反覆測試,大致對引用傳遞在記憶體中的模式有了一定的瞭解,後來為了加深印象,寫了個總結,應該不會有大的問題——當然這是在PHP4中,在以後的版本中可能會有變化。當時寫總結的時候,想鍛煉一下英語,因此就湊合了一篇。不過本人英語不好,也懶得翻譯,反正當時想自己看得懂就行了。今天心血來潮,突然覺得還蠻有用的,於是在這裡現醜了,請大家指正。那位看得懂的幫忙翻譯一下吧,我沒空了。

<?php 
/* 

filename: SetGetTest.php 

comment on assignment by value and referrence 
assuming $var is a varialbe, its handle(pointer) is named as *var, 
and its content is named as @var 

the memory area of @var is referred by *var, if the *var is the same,  
then the memory areas are the same, so *var is just like a pointer. 

1. when $var = $var1 
@var copied from @var1, but in the different memory area,  
new *var assigned by the system, pointing to the memory area holding @var 
*var and *var1 are different 

2. when $var =& $var1, 
*var assigned by *var1, and the @var is not assigned or copied,  
it is absolutely the same as @var1, and in the same memory area 
both *var and *var1 pointing to the memory area, that means they are the same. 

passing by referrence 
3.  
function set1(&$s){ 
$var =& $s; 

set1($var1) results: 
*var1 passing to the function, and *s is the same as *var1, 
then *var is the same as *s, the result is that *var is the same as *var1 
and all the contents are the same obviously. 

4. 
function set2(&$s){ 
$var = $s; 

set2($var1) results: 
*var1 passing to the function, and *s is the same as *var1, 
but when $var = $s executes, from 1. we can see @var is the same as @s,  
but *var is different from *s, so @var and @s is not in the same memory area, 
while @s and @var1 is sharing the same memory area, also *var1 and *s are the same. 

5. 
normal function return: 
function get(){ return $var1; } 
assuming the result is referred by a variable $result. 
then @result is copied from @var1 but *result is not the same as *var1 
when $var = get(); 
first you get a variable $result, as I said above, @result is the same as @var1, but *result 
is different from *var1, and next $var = $result executes.  
As I said in 1., you can find, @var is the same as @result and the same as @var1,  
but *var is different from *result AND *var1; 

while $var =& get() just means: 
*var is the same as *result, so @var and @result are in the same memory area,  
but they are still different from those of $var1,  
both the memory area of @var1 and *var1, 




6. 
returning by referrence 
function &get(){ return $var1; } 
there are two ways to get the result 

$var = get(); and $var =& get(); now I will tell the difference 
I. $var = get(); 
the *result is the same as *var1 and so @result and @var1 are the same. 
and then $var = $result executes,  
*var is not the same as *result, and also different from *var1,  
but their contents are the same. 

I. $var =& get(); 
the *result is the same as *var1 and so @result and @var1 are the same. 
and then $var =& $result executes,  
this means $var and $result are the same, both of @ and * 

*/ 

// the test is the following 

function println($s = ""){ 
print "$s<br>\n"; 


class GetSetTest 

var $var = null; 

function setByRef(&$arg){ 
$this->var =& $arg; 


function passByRef(&$arg){ 
$this->var = $arg; 


function setByVal($arg){ 
$this->var = $arg; 


function &getByRef(){ 
return $this->var; 


function getByVal(){ 
return $this->var; 



$o = new GetSetTest; 

println("============ setByRef getByRef ============="); 
println("-----------------Before change----------------"); 
$in = "before change"; 
$o->setByRef($in); 
$outByVal = $o->getByRef(); 
$outByRef =& $o->getByRef(); 
println("\$in: ".$in); 
println("\$outByVal: ".$outByVal); 
println("\$outByRef: ".$outByRef); 
println("\$this->var: ".$o->var); 
println("-----------------After change-----------------"); 
$in = "after change"; 
println("\$in: ".$in); 
println("\$outByVal: ".$outByVal); 
println("\$outByRef: ".$outByRef); 
println("\$this->var: ".$o->var); 
println(); 

println("============ setByRef getByVal ============="); 
println("-----------------Before change----------------"); 
$in = "before change"; 
$o->setByRef($in); 
$outByVal = $o->getByVal(); 
$outByRef =& $o->getByVal(); 
println("\$in: ".$in); 
println("\$outByVal: ".$outByVal); 
println("\$outByRef: ".$outByRef); 
println("\$this->var: ".$o->var); 
println("-----------------After change-----------------"); 
$in = "after change"; 
println("\$in: ".$in); 
println("\$outByVal: ".$outByVal); 
println("\$outByRef: ".$outByRef); 
println("\$this->var: ".$o->var); 
println(); 

println("============ passByRef getByVal ============="); 
println("-----------------Before change----------------"); 
$in = "before change"; 
$o->passByRef($in); 
$outByVal = $o->getByVal(); 
$outByRef =& $o->getByVal(); 
println("\$in: ".$in); 
println("\$outByVal: ".$outByVal); 
println("\$outByRef: ".$outByRef); 
println("\$this->var: ".$o->var); 
println("-----------------After change-----------------"); 
$in = "after change"; 
println("\$in: ".$in); 
println("\$outByVal: ".$outByVal); 
println("\$outByRef: ".$outByRef); 
println("\$this->var: ".$o->var); 
println(); 

/* 
以下輸出結果是我(夜貓子)擅自編輯添加的,主要是為後來人查看方便加在這裡,越肉代庖,向longnetpro致歉 
輸出結果: 
============ setByRef getByRef ============= 
-----------------Before change---------------- 
$in: before change 
$outByVal: before change 
$outByRef: before change 
$this->var: before change 
-----------------After change----------------- 
$in: after change 
$outByVal: before change 
$outByRef: after change 
$this->var: after change 

============ setByRef getByVal ============= 
-----------------Before change---------------- 
$in: before change 
$outByVal: before change 
$outByRef: before change 
$this->var: before change 
-----------------After change----------------- 
$in: after change 
$outByVal: before change 
$outByRef: before change 
$this->var: after change 

============ passByRef getByVal ============= 
-----------------Before change---------------- 
$in: before change 
$outByVal: before change 
$outByRef: before change 
$this->var: before change 
-----------------After change----------------- 
$in: after change 
$outByVal: before change 
$outByRef: before change 
$this->var: after change 
*/ 

?>



相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.