Heim  >  Artikel  >  Backend-Entwicklung  >  php基础-范例:global和static的使用和区别

php基础-范例:global和static的使用和区别

WBOY
WBOYOriginal
2016-06-13 13:10:391153Durchsuche

php基础-实例:global和static的使用和区别

?? ? function testGloabl(){
??? ??? global $testGloabl;
??? ??? $testGloabl = 2;
??? ??? $testGloabl ++;
???? }
???? testGloabl();
???? echo $testGloabl."||".$GLOBALS['testGloabl'];
????
???? function testStatic(){
??? ??? static $testStatic = 2;
??? ??? $testStatic ++;
???? }

??? testStatic();
??? echo $testStatic;//使用static关键字的变量,在函数外部访问将会提示 $testStatic未定义;

?

说明:

1.使用global定义的关键字,当这个关键字所在函数被调用后,它将在当前脚本的任何位置可以被访问到

2.使用static定位的关键字,当这个关键字所在函数内被访问,该函数外其他地方无法访问到。

共同点:global? static 都可以使定位的变量指向同一块内存区域。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn