我正在開發一個使用Symfony2的應用程序。我遇到的問題是,當創建一個文件夾在實體中創建一個函數時,創建的文件夾沒有sudo特權,我想知道如何直接使用sudo權限創建文件夾。這是我的代碼:Symfony2和sudo權限
protected function getUploadDirMark()
{
// get rid of the __DIR__ so it doesn't screw when displaying uploaded doc/image in the view.
return 'uploads/documents/'.$this->getIzenburua();
}
的'uploads/documents/'.$this->getIzenburua();
文件夾沒有sudo的權限,我該怎麼使用sudo權限創建。謝謝。
我怎麼寫這個?通過將返回chmod('uploads/documents /'。this this-> getIzenburua(),777);它不能完成。它會提示錯誤。任何想法? – Haritz