Is there a way to change folder permissions from PHP without using FTP?

前端 未结 1 1416
难免孤独
难免孤独 2021-01-19 14:57

Is there a way to change folder permissions from PHP without using FTP? I\'m creating new folders on server automatically, but i cannot move the uploaded file in it because

相关标签:
1条回答
  • 2021-01-19 15:18
    chmod('/home/path/directory/', 0777)
    

    http://php.net/manual/en/function.chmod.php

    0 讨论(0)
提交回复
热议问题