当我通过ajax在我的joomla插件upladFolder中添加图片时,在localhost中做得很好,
但是当我在服务器中执行此操作时,不会添加图片。
请帮帮我如何查看文件系统的权限 服务器?
答案 0 :(得分:1)
尝试 fileperms() function.It将返回给定文件的权限。
语法:
fileperms ( string $filename );
//以数字模式
返回文件的权限例如:
<?php
echo substr(sprintf('%o', fileperms('/tmp')), -4);
echo substr(sprintf('%o', fileperms('/etc/passwd')), -4);
?>
以上示例将输出:
1777
0644