gpt4 book ai didi

PHP目录列表问题?

转载 作者:搜寻专家 更新时间:2023-10-31 21:18:42 25 4
gpt4 key购买 nike

谁能帮我解决这个问题,我卡住了。不知道为什么这不起作用

$myPath = get_bloginfo('wpurl').'/wp-content/uploads/'; // this is full path

function ReadDirList($d){
$dir = opendir($d);
$fs = "";
while($folder = readdir($dir))
{
//if(is_dir($folder)){
$fs = $fs. '<option>'.$folder.'</option>';
//}
}
closedir($dir);
echo $fs;
}

我称这个函数为<select> <?php ReadDirList($myPath); ?> </select>提前发送。

最佳答案

根据函数引用,get_bloginfo('wpurl') 将返回一个 URL。如果你想访问本地文件系统,你需要一个真实的文件路径,而不是一个 URL。

第一行试试这个:

$myPath = WP_CONTENT_DIR.'/uploads/'; // this is full path

WP_CONTENT_DIR 在配置文件中定义,应指向安装的 wp-content 文件夹。

关于PHP目录列表问题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2695035/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com