php变量作用域 [英] php variable scope

查看:28
本文介绍了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变量作用域的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆