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

Analysis of variable scope in PHP

2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

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

Today, I will talk to you about the analysis of the scope of variables in PHP. Many people may not know much about it. In order to make you understand better, the editor has summarized the following content for you. I hope you can get something according to this article.

The variable scope in the PHP interview is a common and compulsory question in the interview. Here are some points to pay attention to in the interview:

# living example one

$A = "Hello"

Functionprint_A ()

{

A = "phpmysql!!"

Global $A

/ / the global global variable function is defined externally by an independent module $A.

Echo $A

}

Echo $A; / / output Hello

Print_A (); / / out pot Hello

When you define $An as a global variable, you do not change the value of $A

Test venue:

The scope of local variables and global variables, the external variables of the function are global variables (this page and the introduction page), and the internal variables of the function are local variables.

Easy to make mistakes:

The interviewer can not distinguish the concept of local variable from global variable, so that the output result of the function can not be written accurately.

Analysis:

1) Local variables can only be used within the function and will be invalidated no matter how they are modified externally, which ensures that we are on the same page.

No exception occurs when you define a variable with the same name

2) globally, it can be declared when multiple functions and multiple pages are needed, which can save memory space, but the definition is overwritten repeatedly during application.

Attention should also be paid to the problems caused by the cover.

# living example two

Function test () {

$num = 10

Echo $num

}

Test (); / / output 10

Echo $num

$num = $num+10

Echo $num

Analysis:

The above code will result in a waring with an undefined variable, which we will ignore

1) $num is a local variable, so you output inside the function and output 10 when you call the function method, but no matter what you do outside

The variable $num is not the same variable, so it will not have a substantial effect.

After reading the above, do you have any further understanding of the problem resolution of variable scope in PHP? If you want to know more knowledge or related content, please follow the industry information channel, thank you for your support.

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

Internet Technology

Wechat

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

12
Report