Home > php教程 > php手册 > PHP网站开发变量作用域

PHP网站开发变量作用域

WBOY
Release: 2016-06-13 10:35:50
Original
1142 people have browsed it

1、php中没有全局静态变量这一说法。

  以前做.Net开发,可以用如下的方法去缓存一些数据:

view plaincopy to clipboardprint?
public class Test   { 
     private static int Count = 0;   //该变量在整个应用程序中都有效。 
}

public class Test{
     private static int Count = 0;   //该变量在整个应用程序中都有效。
}

而php是一种解释型的语言,虽然有static修饰符,但意思与.Net中的完全不一样。
即使把类中的一个变量声明为static,这个变量也只在当前页面级的应用程序域中有效。

2、理解变量作用域。

  在方法体外声明的变量,在方法体内是访问不到的。
 如:

view plaincopy to clipboardprint?
  $url = "www.webjx.com"; 
  function _DisplayUrl()    { 
      echo $url; 
  } 
  function DisplayUrl()   { 
    global $url; 
    echo $url; 
  } 
  _DisplayUrl(); 
  DisplayUrl(); 
?>

  $url = "www.webjx.com";
  function _DisplayUrl() {
      echo $url;
  }
  function DisplayUrl(){
    global $url;
    echo $url;
  }
  _DisplayUrl();
  DisplayUrl();
?>

_DisplayUrl方法是不会显示任何结果,因为变量$url在方法体_DisplayUrl中是无法访问的,在$url前加上global即可,如DisplayUrl方法。

在方法体中定义的global变量可以在方法体外访问:

view plaincopy to clipboardprint?
  function _DisplayUrl()   { 
      global $myName; 
      $myName=yibin; 
  } 
   
  _DisplayUrl(); 
  echo $myName;  //output yibin 
?>

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template