PHP empty()函数:Can't use method return value in write context


<?php
if (!empty (get_gpc('userId')))
{
	$userId = get_gpc('userId');
}
else
{
	$error = "ID doesn't exist";
}

报错:

Fatal error: Can't use method return value in write context in (line number)

为什么?

empty()函数是检查一个变量是否为空,但是 get_gpc() 是个函数,所以得改下,参考代码如下:

<?php
$test = get_gpc('userId');
if (!empty($test))
{
	$userId = get_gpc('userId');
}
else
{
	$error = "ID doesn't exist";
}


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM