我使用 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);
}
知道如何解决我的问题吗?