如何从其他域获取图像

时间:2014-08-07 17:53:39

标签: php

function givemeG($path) {
$files = glob($path . '*.jpg');
$cs=" class=\"act\"";
foreach($files as $img) { 
    echo "<img" . $cs . " src=" . "\"" . $img . "\"" . " alt=\"img\">";
    $cs="";
    echo "\n";
}
}

$path = "frederic/";
givemeG($path);

这会为frederic文件夹

中的所有图像写入img标记

我怎样才能做同样的事情而不是frederic文件夹我需要来自另一个域(同一主机服务器)的图像。

简单地替换path不起作用:

$path = "http://www.codee.site50.net/frederic/";
givemeG($path);

0 个答案:

没有答案