php variable scope(php变量作用域)
问题描述
我对 php 变量范围感到困惑.例如:
i'm confused about the php variable scope. such as:
while(true){
$var = "yes , it is a test!";
}
printf($var)
$var
是在 while 语句范围内定义的,我们怎么才能让它超出它的范围呢?我在文档上找不到解释.
the $var
is defined in while statement scope , how could we get it outside it's scope ? and i can't find explanation on the document .
我想知道 php 如何处理它的范围.
i wonder how php deal with it's scope .
推荐答案
如果你做了 while(true)
你就不会离开 while,所以没关系.但是如果你有一个真实的表达,像这样(这是一个无用的例子,我知道)
If you do while(true)
you will not get out of the while, so it wouldn't matter. But if you would have a real expression, something like this (this is a useless example, i know)
$i=0
while($i<10){
$var = "yes , it is a test!";
$i++;
}
printf($var);
会起作用.没有特殊的while"变量范围,printf 将打印您的字符串.检查:http://php.net/manual/en/language.variables.scope.php
Will just work. There is no special "while" variable scope, the printf will print your string. check : http://php.net/manual/en/language.variables.scope.php
这篇关于php变量作用域的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:php变量作用域


- 如何从数据库中获取数据以在 laravel 中查看页面? 2022-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- 使用 GD 和 libjpeg 支持编译 PHP 2022-01-01
- 如何使用 Google API 在团队云端硬盘中创建文件夹? 2022-01-01
- PHP foreach() 与数组中的数组? 2022-01-01
- 覆盖 Magento 社区模块控制器的问题 2022-01-01
- openssl_digest vs hash vs hash_hmac?盐与盐的区别HMAC? 2022-01-01
- Laravel 5:Model.php 中的 MassAssignmentException 2021-01-01
- 如何在 Symfony2 中正确使用 webSockets 2021-01-01
- PHP - if 语句中的倒序 2021-01-01