Home > Backend Development > PHP Tutorial > PHP解析JSON数据,怎么增加一个判断,URL地址是否是图片

PHP解析JSON数据,怎么增加一个判断,URL地址是否是图片

PHP中文网
Release: 2016-06-13 10:52:51
Original
1094 people have browsed it

  PHP解析JSON数据,如何增加一个判断,URL地址是否是图片?
我有一组JSON数据,我想通过PHP把他解析成HTML格式的内容。
其中Uri部分有的是照片,有的是链接。如何增加一个判断,是照片的输出,不是照片的为空。谢谢。

  • PHP code
$data = json_decode($json);
foreach ($data->results as $result) {
if(!empty($result->Uri)){
    echo &#39;<img src="&#39;.htmlspecialchars($result->Uri).&#39;" />&#39;;
}
}
Copy after login


------解决方案--------------------
大部分的图片链接都是以后缀jpg/gif/png等出现的
如果是urlwrite了话 那么你可以查看下他的命名规律来做filter
------解决方案--------------------

  • PHP code
$imgs_arr = array( "jpg" , "jpeg" , "png" , "gif" );//图片的后缀 ,自己可以添加
$data = json_decode($json);
foreach ($data->results as $result) {
    $ext = strtolower(end(explode(".",$result->Uri)));
    if( !empty($ext) && in_array($ext , $imgs_arr)){
       echo &#39;<img src="&#39;.htmlspecialchars($result->Uri).&#39;" />&#39;;
    }
}
Copy after login

以上就是PHP解析JSON数据,怎么增加一个判断,URL地址是否是图片的内容,更多相关内容请关注PHP中文网(www.php.cn)!


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template