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

WBOY
Release: 2016-06-13 13:10:25
Original
761 people have browsed it

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


PHP code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->$data = json_decode($json);
foreach ($data->results as $result) {
if(!empty($result->Uri)){
    echo '<img  src="'.htmlspecialchars(%24result->Uri).'" alt=" PHP解析JSON数据,怎么增加一个判断,URL地址是否是图片 " >';
}
}
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 '<img  src="'.htmlspecialchars(%24result->Uri).'" alt=" PHP解析JSON数据,怎么增加一个判断,URL地址是否是图片 " >';
    }
} <div class="clear">
                 
              
              
        
            </div>
Copy after login
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template