How to make pathinfo() return the right extension?

自闭症网瘾萝莉.ら 提交于 2019-12-06 16:49:17

If you pass a second argument to pathinfo, then it doesn't return an array.

You should just echo $info.

From the docs (realpath):

If options is used, this function will return a string if not all elements are requested.

Accessing $info['extension']; happens to be accessing the first character of the string array.

Thanks to Tim Cooper's comment. (int)'extension' evaluates to 0. In the documention on the String type in the section "String access and modification by character" outlines how strings can be accessed as arrays, in the note it mentions:

Non-integer types are converted to integer.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!