如果我做
$dir = './';
$files = glob( $dir . '*.png');
foreach( $files as $file) {
echo $file;
}
?>
并将 php 文件存储在与图像相同的文件夹中,我会得到正确的 png 文件。
如果我更改 php 文件的位置如何读取位于其他文件夹中的 png 文件?
如果我做
$dir = 'www.site.com/content/images';
$files = glob( $dir . '*.png');
foreach( $files as $file) {
echo $file;
}
它不显示任何东西,是否有必要将带有代码的php文件放在同一个图像文件夹中?