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
文件夹
我怎样才能做同样的事情而不是frederic
文件夹我需要来自另一个域(同一主机服务器)的图像。
简单地替换path
不起作用:
$path = "http://www.codee.site50.net/frederic/";
givemeG($path);