PHP has four different variable scopes: static, parameter, global, local.
1. Global variables
are in All variables defined outside the function have global scope, and variables declared inside the function are local variables and can only be accessed within the function. To use global variables in a function, use the global keyword.
<?php $a = 1; $b = 2; function Sum() { global $a, $b; $b = $a + $b; } Sum(); ?>
The second way to access variables in the global scope is to use a special PHP custom $GLOBALS array. The previous example can be written as:
<?php $a = 1; $b = 2; function Sum() { $GLOBALS["b"] = $GLOBALS["a"] + $GLOBALS["b"]; } Sum(); ?>
2. Static variable
Another important feature of variable scope is static variable (staticvariable). Static variables only exist in the local function scope, but their values are not lost when program execution leaves this scope.
Static variables defined in a function cannot be called outside the function.
Static variables also provide a way to deal with recursive functions. A recursive function is a function that calls itself. Be careful when writing recursive functions, as they may recurse indefinitely. You must ensure that there are adequate means to terminate recursion.
<?php function Test() { static $count = 0; $count++; echo $count; if ($count < 10) { Test (); } $count--; } ?>
3. Local variables
Parameters are local variables that pass values to the function through the calling code.
4. Variable variables
Sometimes it is very convenient to use variable variable names. That is, the variable name of a variable can be set and used dynamically. An ordinary variable is set by declaration, for example:
<span style="color:#000000;">##<?php <span style="color:#0000BB;">$a <br></span> = <span style="color:#007700;"></span>"hello"<span style="color:#DD0000;"></span>;<span style="color:#007700;"></span>?><span style="color:#0000BB;"></span> |
uses two dollar signs ($), and it can be used as a variable variable. For example:
##<span style="color:#000000;">$<span style="color:#0000BB;"></span>$a <span style="color:#007700;"></span>= <span style="color:#0000BB;"></span>"world"<span style="color:#007700;"></span>;<span style="color:#DD0000;"></span>?><span style="color:#007700;"></span><span style="color:#0000BB;"></span></span> </td># #At this time, both variables are defined: the content of </tr>$a</tbody> is "hello" and the content of </table>$hello<p style="text-align: left;"> is "world". Therefore, it can be expressed as: <tt></tt><tt></tt></p> <table border="0"><tbody>##<?php <tr class="firstRow"><td>echo <code><span style="color:#000000;">"$a ${$a}"<span style="color:#0000BB;"></span>;<span style="color:#007700;"></span>?><span style="color:#DD0000;"></span><span style="color:#007700;"></span><span style="color:#0000BB;"></span></span>The following way of writing is more accurate And the same result will be output: |
"$ a $hello"<span style="color:#000000;"><span style="color:#0000BB;">;</span><span style="color:#007700;">?></span><span style="color:#DD0000;"></span><span style="color:#007700;"></span><span style="color:#0000BB;"></span><p style="text-align: left;">它们都会输出:<tt>hello world</tt>。</p>
<p style="text-align: left;">要将可变变量用于数组,必须解决一个模棱两可的问题。这就是当写下<tt>$$a[1]</tt>时,解析器需要知道是想要<tt>$a[1]</tt>作为一个变量呢,还是想要<tt>$$a</tt>作为一个变量并取出该变量中索引为 [1]的值。解决此问题的语法是,对第一种情况用<tt>${$a[1]}</tt>,对第二种情况用<tt>${$a}[1]</tt>。</p>
<p style="text-align: left;">注意可变变量不能用于 PHP 的超全局变量数组。这意味着不能这样用:<tt>${$_GET}</tt>。</p>
<p style="text-align: left;"><span style="background-color:rgb(255,0,0);">5. 常量</span></p><pre class='brush:php;toolbar:false;'><?php
define("GREETING", "Welcome to W3School.com.cn!");
echo GREETING;
?></pre><ul class=" list-paddingleft-2">
<li><p style="text-align: left;">常量前面没有美元符号(<tt>$</tt>);</p></li>
<li><p style="text-align: left;">常量默认为大小写敏感。按照惯例常量标识符总是大写的。</p></li>
<li><p style="text-align: left;">常量只能用 <strong>define()</strong> 函数定义,而不能通过赋值语句;</p></li>
<li><p style="text-align: left;">和 superglobals 一样,常量的范围是全局的。不用管作用域就可以在脚本的任何地方定义和访问常量;</p></li>
<li><p style="text-align: left;">常量一旦定义就不能被重新定义或者取消定义;</p></li>
<li><p style="text-align: left;">常量的值只能是标量数据(<span style="background-color:inherit;">boolean</span>,<span style="background-color:inherit;">integer</span>,<span style="background-color:inherit;">float</span> 和 <span style="background-color:inherit;">string</span>)或 null。</p></li>
</ul>
<p style="text-align: left;"><strong style="background-color:inherit;">1. 自定义常量</strong></p><pre class='brush:php;toolbar:false;'><?php
define("CONSTANT", "Hello world.");
echo CONSTANT; // outputs "Hello world."
echo Constant; // outputs "Constant" and issues a notice.
?></pre><p style="text-align: left;"><span style="background-color:inherit;line-height:1.5;"><strong style="background-color:inherit;">2. 类常量</strong></span></p>
<p style="margin: 5px 0px; background-color: inherit; text-align: left;"> 可以在类中定义常量,<span style="background-color:inherit;line-height:1.5;">常量的值必须是一个定值,不能是变量,类属性或其它操作(如函数调用)的结果。但在PHP5.6中,对常量进行了增强,允许常量计算,允许使用包 含数字、字符串字面值和常量的表达式结果来定义const常量。常量的值也可以为一个数组,但不能是变量。</span></p>
<p style="margin: 5px 0px; background-color: inherit; text-align: left;"><span style="background-color:inherit;line-height:1.5;"> 定义类常量只能使用<strong style="background-color:inherit;line-height:1.5;">const</strong><span style="background-color:inherit;line-height:1.5;">关键字</span><span style="font-family: 微软雅黑; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255); font-style: normal; font-weight: normal; text-align: left;">。</span></span></p><pre class='brush:php;toolbar:false;'> class MyClass {
const AB = 2;
public function showConstant(){
echo self::AB;
}
}</pre><p style="background-color: inherit; text-align: left;"> const 与 define 的区别?</p>
<p style="text-align: left;">1、const用于类成员变量的定义,一经定义,不可修改。Define不可以用于类成员变量的定义,可用于全局常量。</p>
<p style="text-align: left;">2、Const可在类中使用,define不能</p>
<p style="text-align: left;">3、Const不能再条件语句中定义常量</p>
<p style="text-align: left;">4、const采用普通的常量名称,define可以采用表达式作为名称</p>
<p style="text-align: left;">相关推荐:</p>
<p style="text-align: left;"><a href="http://www.php.cn/php-weizijiaocheng-375495.html" target="_self">php中变量的命名规则具体详解</a></p>
<p style="text-align: left;"><a href="http://www.php.cn/php-weizijiaocheng-354989.html" target="_self">浅谈php中变量的数据类型判断函数实例代码</a></p>
<p style="text-align: left;"><a href="http://www.php.cn/php-weizijiaocheng-311032.html" target="_self">php中变量及部分适用方法_PHP教程</a></p></span> |
The above is the detailed content of Example analysis of variables and constants in PHP. For more information, please follow other related articles on the PHP Chinese website!

Thedifferencebetweenunset()andsession_destroy()isthatunset()clearsspecificsessionvariableswhilekeepingthesessionactive,whereassession_destroy()terminatestheentiresession.1)Useunset()toremovespecificsessionvariableswithoutaffectingthesession'soveralls

Stickysessionsensureuserrequestsareroutedtothesameserverforsessiondataconsistency.1)SessionIdentificationassignsuserstoserversusingcookiesorURLmodifications.2)ConsistentRoutingdirectssubsequentrequeststothesameserver.3)LoadBalancingdistributesnewuser

PHPoffersvarioussessionsavehandlers:1)Files:Default,simplebutmaybottleneckonhigh-trafficsites.2)Memcached:High-performance,idealforspeed-criticalapplications.3)Redis:SimilartoMemcached,withaddedpersistence.4)Databases:Offerscontrol,usefulforintegrati

Session in PHP is a mechanism for saving user data on the server side to maintain state between multiple requests. Specifically, 1) the session is started by the session_start() function, and data is stored and read through the $_SESSION super global array; 2) the session data is stored in the server's temporary files by default, but can be optimized through database or memory storage; 3) the session can be used to realize user login status tracking and shopping cart management functions; 4) Pay attention to the secure transmission and performance optimization of the session to ensure the security and efficiency of the application.

PHPsessionsstartwithsession_start(),whichgeneratesauniqueIDandcreatesaserverfile;theypersistacrossrequestsandcanbemanuallyendedwithsession_destroy().1)Sessionsbeginwhensession_start()iscalled,creatingauniqueIDandserverfile.2)Theycontinueasdataisloade

Absolute session timeout starts at the time of session creation, while an idle session timeout starts at the time of user's no operation. Absolute session timeout is suitable for scenarios where strict control of the session life cycle is required, such as financial applications; idle session timeout is suitable for applications that want users to keep their session active for a long time, such as social media.

The server session failure can be solved through the following steps: 1. Check the server configuration to ensure that the session is set correctly. 2. Verify client cookies, confirm that the browser supports it and send it correctly. 3. Check session storage services, such as Redis, to ensure that they are running normally. 4. Review the application code to ensure the correct session logic. Through these steps, conversation problems can be effectively diagnosed and repaired and user experience can be improved.

session_start()iscrucialinPHPformanagingusersessions.1)Itinitiatesanewsessionifnoneexists,2)resumesanexistingsession,and3)setsasessioncookieforcontinuityacrossrequests,enablingapplicationslikeuserauthenticationandpersonalizedcontent.


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

Hot Tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Dreamweaver Mac version
Visual web development tools

Atom editor mac version download
The most popular open source editor

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