Table of Contents
PHP引用的调用方法分析,php引用调用
eval
php reference
PHP引用的调用方法分析,php引用调用
本文实例讲述了PHP引用的调用方法。分享给大家供大家参考,具体如下:
示例1:
function test($arr){} echo test(&$arr);
Copy after login
示例2:
function test(&$arr){} echo test($arr);
Copy after login
示例1和2是一样的效果.
示例3:
function &test($arr){return $result;} echo &test($a);//有效 echo test($a);//返回的是值,不是引用
Copy after login
总结:只有定义方法时在方法名前加&和调用方法时在方法名前同时加上&时才返回引用.
示例4:
$a=$b;
Copy after login
当$a与$b都不重新赋值时,即不发生写操作时,与$a=&$b是一样的,即相当于赋引用.
只有当$a或$b都发生变化时才会以拷贝的方式复制一份值赋于$a
希望本文所述对大家PHP程序设计有所帮助。
Statement of this Website
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

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article
What's New in Windows 11 KB5054979 & How to Fix Update Issues
3 weeks ago
By DDD
How to fix KB5055523 fails to install in Windows 11?
2 weeks ago
By DDD
InZoi: How To Apply To School And University
4 weeks ago
By DDD
How to fix KB5055518 fails to install in Windows 10?
2 weeks ago
By DDD
Roblox: Dead Rails – How To Summon And Defeat Nikola Tesla
4 weeks ago
By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)
