我正在使用php构建一个图片库。我使用的代码是这样的:
function ImageBlock() {
$dir = 'img-gallery';
$images = scandir($dir);
$classN = 1;
foreach ($images as $image) {
if ($image != '.' && $image != '..') {
echo '<img class="image' . $classN . '" src="img-gallery/' . $image . '" width="300px"
height="300px">';
}
$classN++;
}
}
如果我在另一个文件中调用此函数,它可以工作。我的问题是,如果我使用下面的 cose,将变量声明为函数......它不再起作用:
$dir = 'img-gallery';
$images = scandir($dir);
function ImageBlock() {
$classN = 1;
foreach ($images as $image) {
if ($image != '.' && $image != '..') {
echo '<img class="image' . $classN . '" src="img-gallery/' . $image . '" width="300px"
height="300px">';
}
$classN++;
}
}
为什么,我的意思是,据我所知,外部声明的变量应该具有全局范围,并且应该可以从函数内部访问。是不是这样?
PHP 不是 JavaScript。全局命名空间中的函数在函数中不可用,除非您显式这样做。有三种方法可以做到这一点:
将它们作为参数传递(推荐)
function ImageBlock($images){
使用 global
关键字(强烈建议不要使用)
function ImageBlock(){
global $images
使用超全局$GLOBALS
(强烈不推荐)
function ImageBlock(){
$images = $GLOBALS['images'];