字符截取。">

php怎么得到文件的后缀名

80酷酷网    80kuku.com

  

substr(strrchr(文件名,'.'),1);
-------------------------------------
STRRCHR得到最后出现。点起的字/
SUBSTR
substr("abcdef", 1, 3);  // 传回 "bcd"
字符截取。从1到三。

相关函数
strstr
传回字串中某字串开始处至结束的字串。
比如:“1。2。3。4”
STRTCHR得到是。4
STRSTR得到是。2。3。4
===================================
$available_type = explode(' ',trim($db_uploadfiletype));
$attach_ext = substr(strrchr($atc_attachment_name,'.'),1);
in_array($attach_ext,$available_type)















分享到
  • 微信分享
  • 新浪微博
  • QQ好友
  • QQ空间
点击: