Blogger Information
Blog 36
fans 0
comment 1
visits 28086
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
php变量
其琛的博客
Original
635 people have browsed it
<?php
$a1;
$a2 = '';
$a3 = 'null';
$a4 =1;
// is_null判断变量是否为null
@var_dump(is_null($a) ?true :false);
// 未声名变量判定为true
@var_dump (is_null($a1) ?true :false);  
// 已经声明但为赋值变量判定为true
var_dump (is_null($a2) ?true :false); 
// 变量为空判定为true
var_dump (is_null($a3) ?true :false); 
// 变量为null判断正确
var_dump (is_null($a4) ?true :false); 
// 变量有值判断错误
echo "<hr>";
// empty()判断变量是否为空
var_dump (empty($a) ?true :false); 
// 为声明变量判断为空
var_dump (empty($a1) ?true :false); 
// 以声明为赋值变量判断为空
var_dump (empty($a2) ?true :false); 
// 未赋值判断为空
var_dump (empty($a3) ?true :false);
// 赋值为null判断不为空,null是空,空不是null 
var_dump (empty($a4) ?true :false); 
// 已赋值判断不为空
echo "<hr>";
// isset()是null的相反操作
var_dump (isset($a) ?true :false); 
// 未声名变量判定为错误
var_dump (isset($a1) ?true :false); 
// 声明为赋值判断错误
var_dump (isset($a2) ?true :false); 
// 赋值为空判断正确
var_dump (isset($a3) ?true :false); 
// 赋值为null判断正确
var_dump (isset($a4) ?true :false); 
// 赋值变量,判断正确
echo "<hr color=\"red\">";
echo "<h1 align=\"center\">变量作用域</h1>";
echo "<h3>全局变量和局部变量</h3>";
// $site = '三分王者';
// 全局变量
$GLOBALS['site']='三分王者';
// 全局变量替代语法
function my()
{
	$name = 'curry';
	// 局部变量
	// global $site;
	// 声明全局变量
	// return '名字'.$name. '称号'.$site;
	return '名字'.$name. '称号'.$GLOBALS['site'];
}
echo my();
echo "<h3>静态变量</h3>";
function one()
{
  static $number = 1;
  // 将变量声明为静态变量,在输出时仅执行一次
  return '第'.$number.'次'.$number++.'<br>';
}
echo '引用$number值'.one().'<br>';
echo '引用$number值'.one().'<br>';
echo '引用$number值'.one().'<br>';
echo '引用$number值'.one().'<br>';

效果图:8{4WM3VHCPEIG%M[}MCSCOD.png手抄图IMG_20180413_182853.jpg

Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!