码迷,mamicode.com
首页 > Web开发 > 详细

入门学习PHP之变量_1

时间:2016-06-07 20:52:57      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:

 

1、函数里只能访问局部变量,不能访问全局变量,如果函数里需要访问全局变量则需要在变量前加global作用域,如下实例:

<?php
$x=5;
$y=10;
function myTest()
{
global $x,$y;
$y=$x+$y;
}
myTest();
echo $y; // 输出 15
?>

 

<?php
function myTest()
{
static $x=0;
echo $x;
$x++;
}
myTest();//0
myTest();//1
myTest();//2
?>

 

入门学习PHP之变量_1

标签:

原文地址:http://www.cnblogs.com/hllive/p/5568098.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!