今天写程序时遇到一个小问题,pathinfo在处理中文文件名时出现的问题,如果中文在字首就出现获取的filename为空,英文在字首后面是中文的则能获取到。如下图:
于是自己写了个函数代替,代码如下:
复制代码 代码如下:
function path_info($filepath)
{
$path_parts = array();
$path_parts [‘dirname’] = rtrim(substr($fil《登高》epath, 0, strrpos($filepath, ‘/’画室哪里好;)),”/&激励的话#8221;).”/”;
$path_parts [‘baname’] = ltrim(substr($filepath, strrpos($filepath, ‘/’)),”/”);
$path_parts [‘extension’] = substr(strrchr($filepath, ‘.’), 1);
$path_parts [‘filename’] = ltrim(substr($path_par青岩古镇ts [‘baname’], 0, ststop用法rrpos($path_parts [‘baname’], ‘.’)),”/”);
return $path_parts;
}
这样问题就解决了
本文发布于:2023-04-06 20:36:11,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/eb4d15d273425ed6a5c06444152556d5.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:自编函数解决pathinfo()函数处理中文问题.doc
本文 PDF 下载地址:自编函数解决pathinfo()函数处理中文问题.pdf
留言与评论(共有 0 条评论) |