0

0

为您详解PHP开发工具的使用与分析

php中文网

php中文网

发布时间:2016-06-21 09:00:35

|

1018人浏览过

|

来源于php中文网

原创

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

magento(麦进斗)
magento(麦进斗)

Magento是一套专业开源的PHP电子商务系统。Magento设计得非常灵活,具有模块化架构体系和丰富的功能。易于与第三方应用系统无缝集成。Magento开源网店系统的特点主要分以下几大类,网站管理促销和工具国际化支持SEO搜索引擎优化结账方式运输快递支付方式客户服务用户帐户目录管理目录浏览产品展示分析和报表Magento 1.6 主要包含以下新特性:•持久性购物 - 为不同的

下载

/* 

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

?>



PHP速学教程(入门到精通)
PHP速学教程(入门到精通)

PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!

下载

本站声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn

热门AI工具

更多
DeepSeek
DeepSeek

幻方量化公司旗下的开源大模型平台

豆包大模型
豆包大模型

字节跳动自主研发的一系列大型语言模型

通义千问
通义千问

阿里巴巴推出的全能AI助手

腾讯元宝
腾讯元宝

腾讯混元平台推出的AI助手

文心一言
文心一言

文心一言是百度开发的AI聊天机器人,通过对话可以生成各种形式的内容。

讯飞写作
讯飞写作

基于讯飞星火大模型的AI写作工具,可以快速生成新闻稿件、品宣文案、工作总结、心得体会等各种文文稿

即梦AI
即梦AI

一站式AI创作平台,免费AI图片和视频生成。

ChatGPT
ChatGPT

最最强大的AI聊天机器人程序,ChatGPT不单是聊天机器人,还能进行撰写邮件、视频脚本、文案、翻译、代码等任务。

相关专题

更多
Golang处理数据库错误教程合集
Golang处理数据库错误教程合集

本专题整合了Golang数据库错误处理方法、技巧、管理策略相关内容,阅读专题下面的文章了解更多详细内容。

2

2026.02.06

java多线程方法汇总
java多线程方法汇总

本专题整合了java多线程面试题、实现函数、执行并发相关内容,阅读专题下面的文章了解更多详细内容。

0

2026.02.06

1688阿里巴巴货源平台入口与批发采购指南
1688阿里巴巴货源平台入口与批发采购指南

本专题整理了1688阿里巴巴批发进货平台的最新入口地址与在线采购指南,帮助用户快速找到官方网站入口,了解如何进行批发采购、货源选择以及厂家直销等功能,提升采购效率与平台使用体验。

90

2026.02.06

快手网页版入口与电脑端使用指南 快手官方短视频观看入口
快手网页版入口与电脑端使用指南 快手官方短视频观看入口

本专题汇总了快手网页版的最新入口地址和电脑版使用方法,详细提供快手官网直接访问链接、网页端操作教程,以及如何无需下载安装直接观看短视频的方式,帮助用户轻松浏览和观看快手短视频内容。

15

2026.02.06

C# 多线程与异步编程
C# 多线程与异步编程

本专题深入讲解 C# 中多线程与异步编程的核心概念与实战技巧,包括线程池管理、Task 类的使用、async/await 异步编程模式、并发控制与线程同步、死锁与竞态条件的解决方案。通过实际项目,帮助开发者掌握 如何在 C# 中构建高并发、低延迟的异步系统,提升应用性能和响应速度。

10

2026.02.06

Python 微服务架构与 FastAPI 框架
Python 微服务架构与 FastAPI 框架

本专题系统讲解 Python 微服务架构设计与 FastAPI 框架应用,涵盖 FastAPI 的快速开发、路由与依赖注入、数据模型验证、API 文档自动生成、OAuth2 与 JWT 身份验证、异步支持、部署与扩展等。通过实际案例,帮助学习者掌握 使用 FastAPI 构建高效、可扩展的微服务应用,提高服务响应速度与系统可维护性。

6

2026.02.06

JavaScript 异步编程与事件驱动架构
JavaScript 异步编程与事件驱动架构

本专题深入讲解 JavaScript 异步编程与事件驱动架构,涵盖 Promise、async/await、事件循环机制、回调函数、任务队列与微任务队列、以及如何设计高效的异步应用架构。通过多个实际示例,帮助开发者掌握 如何处理复杂异步操作,并利用事件驱动设计模式构建高效、响应式应用。

7

2026.02.06

java连接字符串方法汇总
java连接字符串方法汇总

本专题整合了java连接字符串教程合集,阅读专题下面的文章了解更多详细操作。

25

2026.02.05

java中fail含义
java中fail含义

本专题整合了java中fail的含义、作用相关内容,阅读专题下面的文章了解更多详细内容。

28

2026.02.05

热门下载

更多
网站特效
/
网站源码
/
网站素材
/
前端模板

精品课程

更多
相关推荐
/
热门推荐
/
最新课程
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送

Copyright 2014-2026 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号