PHP Regarding the judgment results of empty and isset on parameters, emptyisset_PHP tutorial

WBOY
Release: 2016-07-12 09:05:03
Original
776 people have browsed it

PHP Regarding the judgment results of empty and isset for parameters, emptyisset

<?php
	class test{}
	$a1 = null;
	$a2 = "";
	//$a3 = 
	$a4 = 0;
	$a5 = '0';
	$a6 = false;
	$a7 = array();
	//var $a8;
	$a9 = new test();

	for ($i=1; $i <=9 ; $i++) { 
		$s = 'a'.$i;
		echo $i . ":";
		var_dump(isset($$s));
		echo '<br />';

	}
	echo '<br />';
	for ($i=1; $i <=9 ; $i++) { 
		$s = 'a'.$i;
		echo $i . ":";
		var_dump(empty($$s));
		echo '<br />';
	}
Copy after login

 

That’s basically it

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1070668.htmlTechArticlePHP Regarding the judgment results of empty and isset for parameters, emptyisset ?phpclass test{}$a1 = null;$a2 = "";//$a3 = $a4 = 0;$a5 = '0';$a6 = false;$a7 = array();//var $a8;$a9 = new test();f.. .
Related labels:
php
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 Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!