php 中的 mkdir() 将文件夹权限设置为 755 但我需要 777?
问题描述:
当我将其设置为 0777 时,我试图使用 php 在我的服务器上创建一个文件夹,结果显示为 755?
I am trying to create a folder on my server using php when i set it to 0777 it comes out as 755?
mkdir($create_path, 0777);
谢谢