How to make pathinfo() return the right extension?

2019-06-07 19:59发布

$path = 'abc.jpeg';
$info = pathinfo($path,PATHINFO_EXTENSION);
echo $info['extension'];

This is returning 'j' for some reason, instead of 'jpeg'

Is there anything I should do before calling pathinfo() ?

标签: php pathinfo
1条回答
不美不萌又怎样
2楼-- · 2019-06-07 20:36

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.

查看更多
登录 后发表回答