核心代码
rush:PHP;">
/**
* 获取文件后缀名,并判断是否合法
*
* @param string $file_name
* @param array $allow_type
* @return blob
*/
function get_file_suffix($file_name,$allow_type = array())
{
$file_suffix = strtolower(array_pop(explode('.',$file_name)));
if (empty($allow_type))
{
return $file_suffix;
}
else
{
if (in_array($file_suffix,$allow_type))
{
return true;
}
else
{
return false;
}
}
}
上面的对于PHP5.3以上的版本会报错Strict Standards: Only variables should be passed by reference in。所以编程之家小编换了如下方法
rush:PHP;">
PHP
/**
* 获取文件后缀名,并判断是否合法
*
* @param string $file_name
* @param array $allow_type
* @return blob
*/
function get_file_suffix($file_name,$allow_type = array())
{
$fnarray=explode('.',$file_name);
$file_suffix = strtolower(array_pop($fnarray));
if (empty($allow_type))
{
return $file_suffix;
}
else
{
if (in_array($file_suffix,$allow_type))
{
return true;
}
else
{
return false;
}
}
}
$allow_wj="jpg,gif,png,jpeg";
$allow=explode(",",$allow_wj);
if (get_file_suffix("sakjdfk1.jpg",$allow)){
echo "ok";
}else{
echo "no";
}
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。