图片仅显示在iphone

时间:2018-03-06 12:21:13

标签: php ios iphone path glob

我使用此代码预览从目录到网页的图像:

<?php
$username3 = $_SESSION['username3'];
$username1 = $_SESSION['username1'];
    $images2 = glob("web/user/$username3/profile/profile-"."$username1-*.
    {jpg,jpeg,gif,png}",GLOB_BRACE);
    $_SESSION['images2']=$images2;
    if(!empty($images2)){
    foreach($images2 as $image2) {
    echo '<img src="'.$image2.'"/>';}}
    else{
echo '<img src="web/images/user.png">';
    }
 ?>

这个代码在PC和所有Android设备上运行良好,但是当我在几个iphone中测试时,图片显示并且显示了user.png。 我不知道这段代码有什么问题,或者我应该怎么做。 路径错了还是别的?

0 个答案:

没有答案