使用opendir()
. 我收到以下警告:
PHP 警告:opendir(/uploads/users/405/images/profile/profilepic/) [function.opendir]: failed to open dir: No such file or directory in /home/my_folder/public_html/models/photos.php on line 1059
第 1059 行photos.php
有以下内容:
if ( ( $handle = opendir( $profile_pic_path ) ) ) { // do stuff }
在哪里:
$profile_pic_path = '/uploads/users/405/images/profile/profilepic/';
我尝试了几种不同的方法,但无法正常工作(我的错误日志中不断收到 PHP 警告消息)。
我究竟做错了什么?