fputs() 定義和用法
fputs() 函數(shù)寫入文件(可安全用于二進制文件)。
fputs() 函數(shù)是 fwrite() 函數(shù)的別名。
//file 必需。規(guī)定要寫入的打開文件。
//string 必需。規(guī)定要寫入文件的字符串。
//length 可選。規(guī)定要寫入的最大字節(jié)數(shù)。
fputs(file,string,length)
?php
$file = fopen("test.txt","w");
echo fputs($file,"Hello World. Testing!");
fclose($file);
?>
如config.php文件的讀取修改等操作
if($request->isPost()){
$data = $request->param();
$newdata = php
?php
//七牛云插件配置
return [
'accessKey' => '{$data['accessKey']}',
'secretKey' => '{$data['secretKey']}',
'bucket' => '{$data['bucket']}',
'domain' => '{$data['domain']}'
];
php;
@chmod(ADDON_PATH.'qiniu/config.php',0777);//給文件權(quán)限
$fop=fopen(ADDON_PATH.'qiniu/config.php','w');//打開文件
$res = fputs($fop,$newdata);//寫入文件
fclose($fop);//關(guān)閉文件
if($res){//文件寫入成功返回狀態(tài)
return json(['code'=>1,'msg'=>'修改成功!']);
}else{
return json(['code'=>0,'msg'=>'修改失??!']);
}
}
到此這篇關(guān)于php中配置文件保存修改操作 如config.php文件的讀取修改等操作的文章就介紹到這了,更多相關(guān)php配置文件內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
您可能感興趣的文章:- php中配置文件操作 如config.php文件的讀取修改等操作