[PHP]Only variables should be passed by reference

PHP报错:Only variables should be passed by reference

A PHP Error was encountered  
Severity: Runtime Notice  
Message: Only variables should be passed by reference  

$file_name = $_FILES[$upload_name]['name'];
$file_extension = end(explode('.', $file_name)); //ERROR ON THIS LINE

报错原因:

获取后缀名时,使用end函数,将数组内部指针指向最后一个元素,而end是引用传值。

The problem is, that end requires a reference, because it modifies the internal representation of the array (i.e. it makes the current element pointer point to the last element).

The result of explode('.', $file_name) cannot be turned into a reference. This is a restriction in the PHP language, that probably exists for simplicity reasons.

The array. This array is passed by reference because it is modified by the function. This means you must pass it a real variable and not a function returning an array because only actual variables may be passed by reference.

解决办法:

(1) 定义一个变量获取explode后的值,再使用end函数:

$parts = explode('.', $file_name);  
$file_extension = end($parts);  

(2) 使用substr和strrchr函数来取文件后缀名:

$ext = substr( strrchr($file_name, '.'), 1);  

(3) 使用pathinfo函数来取文件后缀名:

$file_ext = pathinfo($file_name, PATHINFO_EXTENSION);  

end() 函数将数组内部指针指向最后一个元素,并返回该元素的值(如果成功)。
pathinfo() 函数以数组的形式返回文件路径的信息。

参考链接:

http://www.w3school.com.cn/php/func_array_end.asp
http://www.w3school.com.cn/php/func_filesystem_pathinfo.asp
http://stackoverflow.com/questions/4636166/only-variables-should-be-passed-by-reference

转载于:https://my.oschina.net/wangyongtao/blog/531812

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值