Home > AI > Uncategorized

php遍历文件目录

遍历用到的函数:

1——

opendir()

readdir()

closedir()

2——

scandir()

 

file_put_contents()

file_get_contents()

 

file_get_contents()文件没有会自动创建,但一直没看到。

1)首先,php没有错误提示,打开看哪里出错。

修改/etc/php.ini,display_errors = On 打开错误提示

2)报没有权限

修改该文件夹chmod 777 Assets即可

ls -l查看权限

drwxr-xr-x 10个字符,后9个分三组,从左分别是当前用户的权限,用户所在组,其它人。

@表示网络下载

chflags hidden 文件民:修改隐藏属性

chown root 文件名:修改文件拥有者

3)memory报错

一般是程序出错,死循环

修改php.ini的memeory_limit备选项

 

Related posts:

Leave a Reply