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!

PHP remains important in modern web development, especially in content management and e-commerce platforms. 1) PHP has a rich ecosystem and strong framework support, such as Laravel and Symfony. 2) Performance optimization can be achieved through OPcache and Nginx. 3) PHP8.0 introduces JIT compiler to improve performance. 4) Cloud-native applications are deployed through Docker and Kubernetes to improve flexibility and scalability.

PHP is suitable for web development, especially in rapid development and processing dynamic content, but is not good at data science and enterprise-level applications. Compared with Python, PHP has more advantages in web development, but is not as good as Python in the field of data science; compared with Java, PHP performs worse in enterprise-level applications, but is more flexible in web development; compared with JavaScript, PHP is more concise in back-end development, but is not as good as JavaScript in front-end development.

PHP and Python each have their own advantages and are suitable for different scenarios. 1.PHP is suitable for web development and provides built-in web servers and rich function libraries. 2. Python is suitable for data science and machine learning, with concise syntax and a powerful standard library. When choosing, it should be decided based on project requirements.

PHP is a scripting language widely used on the server side, especially suitable for web development. 1.PHP can embed HTML, process HTTP requests and responses, and supports a variety of databases. 2.PHP is used to generate dynamic web content, process form data, access databases, etc., with strong community support and open source resources. 3. PHP is an interpreted language, and the execution process includes lexical analysis, grammatical analysis, compilation and execution. 4.PHP can be combined with MySQL for advanced applications such as user registration systems. 5. When debugging PHP, you can use functions such as error_reporting() and var_dump(). 6. Optimize PHP code to use caching mechanisms, optimize database queries and use built-in functions. 7

The reasons why PHP is the preferred technology stack for many websites include its ease of use, strong community support, and widespread use. 1) Easy to learn and use, suitable for beginners. 2) Have a huge developer community and rich resources. 3) Widely used in WordPress, Drupal and other platforms. 4) Integrate tightly with web servers to simplify development deployment.

PHP remains a powerful and widely used tool in modern programming, especially in the field of web development. 1) PHP is easy to use and seamlessly integrated with databases, and is the first choice for many developers. 2) It supports dynamic content generation and object-oriented programming, suitable for quickly creating and maintaining websites. 3) PHP's performance can be improved by caching and optimizing database queries, and its extensive community and rich ecosystem make it still important in today's technology stack.

In PHP, weak references are implemented through the WeakReference class and will not prevent the garbage collector from reclaiming objects. Weak references are suitable for scenarios such as caching systems and event listeners. It should be noted that it cannot guarantee the survival of objects and that garbage collection may be delayed.

The \_\_invoke method allows objects to be called like functions. 1. Define the \_\_invoke method so that the object can be called. 2. When using the $obj(...) syntax, PHP will execute the \_\_invoke method. 3. Suitable for scenarios such as logging and calculator, improving code flexibility and readability.


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

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

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

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

SublimeText3 Linux new version
SublimeText3 Linux latest version

SublimeText3 Chinese version
Chinese version, very easy to use