search
Homephp教程php手册为您详解PHP开发工具的使用与分析

  有一段时间一直迷惑于PHP中引用的传递,后来查手册及C源程序,并反复测试,大致对引用传递在内存中的模式有了一定的了解,后来为了加深印象,写了个总结,应该不会有大的问题——当然这是在PHP4中,在以后的版本中可能会有变化。当时写总结的时候,想锻炼一下英语,因此就凑合了一篇。不过本人英语不好,也懒得翻译,反正当时想自己看得懂就行了。今天心血来潮,突然觉得还蛮有用的,于是在这里现丑了,请大家指正。那位看得懂的帮忙翻译一下吧,我没空了。

/* 

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
\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 
*/ 

?>



Statement
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
解决方法:您的组织要求您更改 PIN 码解决方法:您的组织要求您更改 PIN 码Oct 04, 2023 pm 05:45 PM

“你的组织要求你更改PIN消息”将显示在登录屏幕上。当在使用基于组织的帐户设置的电脑上达到PIN过期限制时,就会发生这种情况,在该电脑上,他们可以控制个人设备。但是,如果您使用个人帐户设置了Windows,则理想情况下不应显示错误消息。虽然情况并非总是如此。大多数遇到错误的用户使用个人帐户报告。为什么我的组织要求我在Windows11上更改我的PIN?可能是您的帐户与组织相关联,您的主要方法应该是验证这一点。联系域管理员会有所帮助!此外,配置错误的本地策略设置或不正确的注册表项也可能导致错误。即

Windows 11 上调整窗口边框设置的方法:更改颜色和大小Windows 11 上调整窗口边框设置的方法:更改颜色和大小Sep 22, 2023 am 11:37 AM

Windows11将清新优雅的设计带到了最前沿;现代界面允许您个性化和更改最精细的细节,例如窗口边框。在本指南中,我们将讨论分步说明,以帮助您在Windows操作系统中创建反映您的风格的环境。如何更改窗口边框设置?按+打开“设置”应用。WindowsI转到个性化,然后单击颜色设置。颜色更改窗口边框设置窗口11“宽度=”643“高度=”500“>找到在标题栏和窗口边框上显示强调色选项,然后切换它旁边的开关。若要在“开始”菜单和任务栏上显示主题色,请打开“在开始”菜单和任务栏上显示主题

如何在 Windows 11 上更改标题栏颜色?如何在 Windows 11 上更改标题栏颜色?Sep 14, 2023 pm 03:33 PM

默认情况下,Windows11上的标题栏颜色取决于您选择的深色/浅色主题。但是,您可以将其更改为所需的任何颜色。在本指南中,我们将讨论三种方法的分步说明,以更改它并个性化您的桌面体验,使其具有视觉吸引力。是否可以更改活动和非活动窗口的标题栏颜色?是的,您可以使用“设置”应用更改活动窗口的标题栏颜色,也可以使用注册表编辑器更改非活动窗口的标题栏颜色。若要了解这些步骤,请转到下一部分。如何在Windows11中更改标题栏的颜色?1.使用“设置”应用按+打开设置窗口。WindowsI前往“个性化”,然

OOBELANGUAGE错误Windows 11 / 10修复中出现问题的问题OOBELANGUAGE错误Windows 11 / 10修复中出现问题的问题Jul 16, 2023 pm 03:29 PM

您是否在Windows安装程序页面上看到“出现问题”以及“OOBELANGUAGE”语句?Windows的安装有时会因此类错误而停止。OOBE表示开箱即用的体验。正如错误提示所表示的那样,这是与OOBE语言选择相关的问题。没有什么可担心的,你可以通过OOBE屏幕本身的漂亮注册表编辑来解决这个问题。快速修复–1.单击OOBE应用底部的“重试”按钮。这将继续进行该过程,而不会再打嗝。2.使用电源按钮强制关闭系统。系统重新启动后,OOBE应继续。3.断开系统与互联网的连接。在脱机模式下完成OOBE的所

Windows 11 上启用或禁用任务栏缩略图预览的方法Windows 11 上启用或禁用任务栏缩略图预览的方法Sep 15, 2023 pm 03:57 PM

任务栏缩略图可能很有趣,但它们也可能分散注意力或烦人。考虑到您将鼠标悬停在该区域的频率,您可能无意中关闭了重要窗口几次。另一个缺点是它使用更多的系统资源,因此,如果您一直在寻找一种提高资源效率的方法,我们将向您展示如何禁用它。不过,如果您的硬件规格可以处理它并且您喜欢预览版,则可以启用它。如何在Windows11中启用任务栏缩略图预览?1.使用“设置”应用点击键并单击设置。Windows单击系统,然后选择关于。点击高级系统设置。导航到“高级”选项卡,然后选择“性能”下的“设置”。在“视觉效果”选

Windows 11 上的显示缩放比例调整指南Windows 11 上的显示缩放比例调整指南Sep 19, 2023 pm 06:45 PM

在Windows11上的显示缩放方面,我们都有不同的偏好。有些人喜欢大图标,有些人喜欢小图标。但是,我们都同意拥有正确的缩放比例很重要。字体缩放不良或图像过度缩放可能是工作时真正的生产力杀手,因此您需要知道如何对其进行自定义以充分利用系统功能。自定义缩放的优点:对于难以阅读屏幕上的文本的人来说,这是一个有用的功能。它可以帮助您一次在屏幕上查看更多内容。您可以创建仅适用于某些监视器和应用程序的自定义扩展配置文件。可以帮助提高低端硬件的性能。它使您可以更好地控制屏幕上的内容。如何在Windows11

10种在 Windows 11 上调整亮度的方法10种在 Windows 11 上调整亮度的方法Dec 18, 2023 pm 02:21 PM

屏幕亮度是使用现代计算设备不可或缺的一部分,尤其是当您长时间注视屏幕时。它可以帮助您减轻眼睛疲劳,提高易读性,并轻松有效地查看内容。但是,根据您的设置,有时很难管理亮度,尤其是在具有新UI更改的Windows11上。如果您在调整亮度时遇到问题,以下是在Windows11上管理亮度的所有方法。如何在Windows11上更改亮度[10种方式解释]单显示器用户可以使用以下方法在Windows11上调整亮度。这包括使用单个显示器的台式机系统以及笔记本电脑。让我们开始吧。方法1:使用操作中心操作中心是访问

如何在Safari中关闭iPhone的隐私浏览身份验证?如何在Safari中关闭iPhone的隐私浏览身份验证?Nov 29, 2023 pm 11:21 PM

在iOS17中,Apple为其移动操作系统引入了几项新的隐私和安全功能,其中之一是能够要求对Safari中的隐私浏览选项卡进行二次身份验证。以下是它的工作原理以及如何将其关闭。在运行iOS17或iPadOS17的iPhone或iPad上,如果您在Safari浏览器中打开了任何“无痕浏览”标签页,然后退出会话或App,Apple的浏览器现在需要面容ID/触控ID认证或密码才能再次访问它们。换句话说,如果有人在解锁您的iPhone或iPad时拿到了它,他们仍然无法在不知道您的密码的情况下查看您的隐私

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)