- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在做我的项目,使用我使用 codeigniter 创建的网页更新 BIND 服务器中 named.conf.local 的内容。当我运行它时,文件无法写入。这些是我的 Controller 代码:
function index() {
$this->load->helper(array('form', 'url'));
$this->load->library('form_validation');
$this->form_validation->set_rules('domain_name','Domain Name','required');
$this->form_validation->set_rules('mail', 'Mail', 'required');
$this->form_validation->set_rules('localhost', 'Localhost', 'required');
if ($this->form_validation->run() == FALSE) {
$this->load->view('dns_form');
} else {
$domain_name = $this->input->post('domain_name');
$mail = $this->input->post('mail');
$localhost = $this->input->post('localhost');
$data = $domain_name . "\n" . $mail . "\n" . $localhost;
if (!read_file('/etc/bind/named.conf.local' . $domain_name, $data, 'a+')) {
echo 'Unable to write this file';
} else {
echo 'File written!';
}
}
chmod -R 777 /etc/bind
授予服务器权限.我的代码有什么问题?感谢帮助。
最佳答案
试试这个对你有用->
$file ='file_path';
$data = 'Your Data';
file_put_contents($file, $data , FILE_APPEND | LOCK_EX);
关于php - read_file 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23882229/
我正在做我的项目,使用我使用 codeigniter 创建的网页更新 BIND 服务器中 named.conf.local 的内容。当我运行它时,文件无法写入。这些是我的 Controller 代码:
我正在尝试使用 Tensorflow 读取和解码图像文件。我有以下代码: dir_path = os.path.dirname(os.path.realpath(__file__)) filename
提问 我循环用file_get_contents抓取一堆url,但总是会在不到第100个URL的时候停下,提示我:“Warning: file_get_contents(URL) [function
我正在尝试在 geopandas 中打开一个形状文件,如下所示: import geopandas as gpd shp = gpd.read_file("C:\my_file.shp") 但这会返回
我正在编写一个应用程序来使用 Python(使用 Pydicom 库)处理 DICOM 图像。不幸的是,根据我阅读的教程(例如 here),我一开始就遇到了一个不应该存在的问题。 代码很简单,就是这样
我在使用 geopanda 的 read_file() 读取 geojson 时收到以下警告: ...geodataframe.py:422: RuntimeWarning: Sequential r
我正在使用 File::Slurp read_file和 write_file更新文件内容的功能。 现在我专注于向它添加错误处理。为此,我尝试对实际不存在的文件执行以下方法。 1) read_file
我有一堆 DICOM 图像,我正在使用 Python dicom 包读取这些图像: my_dicom = dicom.read_file('my_dicom.dcm') my_dicom = my_
我想知道 configparser 中 read 和 read_file 的使用有什么区别。据我测试 config_parser = configparser.ConfigParser() confi
我是一名优秀的程序员,十分优秀!