内容简介:翻译自:https://stackoverflow.com/questions/21449551/parse-error-syntax-error-unexpected-unset-t-unset
我使用简单的php unset()函数来删除和索引数组,但它显示错误
Parse error: syntax error, unexpected 'unset' (T_UNSET)
错误.这是syntex
echo $totalArray = unset($linkExtHelp[0]);
提前致谢.
试试这个,未设置的原因($linkExtHelp [0])分配给变量echo $totalArray =
您不能将unset()值分配给变量,您可以在取消设置之前和未设置之后进行检查,如下所示.换句话说,unset没有任何返回值,因为unset是一个void. Void – 不向其调用者提供结果值.
语法:void unset(mixed $var [,mixed $…])
echo "Before unset:",$linkExtHelp[0]; unset($linkExtHelp[0]); echo "After unset:",$linkExtHelp[0];
代替
echo $totalArray = unset($linkExtHelp[0]);
翻译自:https://stackoverflow.com/questions/21449551/parse-error-syntax-error-unexpected-unset-t-unset
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:- 基于机器翻译输出的语法错误纠正
- NLPCC2018中文语法错误修正任务分享
- 首战告捷!网易有道斩获首届NLPCC中文语法错误修正比赛冠军
- Swift语法快速入门(一)之 Swift基础语法
- 在ES6中使用扩展语法有什么好处?它与rest语法有什么不同?
- Python 基础语法
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Learning PHP 5
David Sklar / O'Reilly / July, 2004 / $29.95
Learning PHP 5 is the ideal tutorial for graphic designers, bloggers, and other web crafters who want a thorough but non-intimidating way to understand the code that makes web sites dynamic. The book ......一起来看看 《Learning PHP 5》 这本书的介绍吧!