Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

What are the ways of passing values of php variables?

2025-01-19 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly introduces the ways of passing values of php variables. It is very detailed and has a certain reference value. Friends who are interested must finish reading it.

1. Value transfer

Description: "copy" the value of one variable and then assign it to another variable. There is no relationship between the two variables at this time.

Sample code:

/ / the value is passed $name = 'Zhang San'; $zs = $name;echo $name,$zs; / / Zhang San San $name ='Li Si'; / / the reassignment of the variable, overwriting the original value echo $name,$zs; / / Li Si Zhang San 2 with the current value. Reference transfer

Description: give the spatial address of the value of one variable to another. At this time, the two variables share a data space and point to the same address. At this time, the two variables are related.

Reference value passing property:

"if the way to pass a value by reference is to modify a variable, other variables will also change. If you delete one of them, the other will not be affected."

Sample code:

$age = 18 age; / / get the data address of the $age variable with the & symbol, & call the address symbol echo $age,$zsage; / / 18 18$ age = 20 echo echo $age,$zsage; / / 20 20unset ($age); echo $age,$zsage; / / error 20 is the whole content of this article "what are the ways of passing values of php variables"? thank you for reading! Hope to share the content to help you, more related knowledge, welcome to follow the industry information channel!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report