私は codeigniter を使用して routes.php にテキストを追加しようとしましたが、config/routes.php にテキストを追加したいのですが、route.php ファイルを 777 パーミッションに更新しましたが、機能していませんでした。
ここに私のコードがあります
$file_path = "var/www/html/staging/oscar/anthola/application/config/routes.php";
$file_exists = read_file($file_path);
$slug ="123";
if ( ! write_file($file_path, $slug))
{
echo 'Unable to write the file';
echo write_file('./config/routes.php', $slug);
}
else
{
echo 'File written!';
echo write_file('./config/routes.php', $slug);
}
私の問題を解決する方法はありますか?