❶ 如何将数组写入php文件中
一般,PHP处理的数据是存放在数据库里的,如果要存放在文件中,可以使用两种方式。
一种是将PHP的数组转换成XML格式的数据,通过
file_put_contents
存入文件。第二种就是将数组转换成json格式存入文件,我着重说下第二种吧,通过函数
json_encode
将数组转换成json格式的数据,再通过
file_put_contents
函数就能存入文件了,若要将数据还原成数组,通过
file_get_contents
获取数据后,再用
json_decode
即可转换成数组
❷ php将数组元素按行写入文本文件
file_put_contents("123.txt", $str);
这个函数就是把str这个数组变量写到123的文本文档里面
❸ php怎样把一个数组写入一个文件
请看代码吧复:
<?php
//假如有数制组$a,讲数组$a写入文件a.txt
$a=array(
"aa"=>123,
"bb"=>456
);
//将数组编程字符串的样式
$aString='$a='.var_export($a,true).';';
//写入文件
file_put_content(__DIR__.'/a.txt',$aString);
如果不明白的话,可以单独查看以上PHP函数的说明。
❹ php如何将数组写入到文件
你的代码大体没写错。仅在var_export($arr)改成
var_export($arr,TRUE)加一个真值返回输出。
❺ php怎么将对象或者数组写入一个文本文件
第一种:
<?php
$filename = 'test.txt';
$somecontent = "this is test string.";
if (is_writable($filename)) {
if (!$handle = fopen($filename, 'a')) {
echo "不能打开文件 $filename";
exit;
}
// 将$somecontent写入到我们打开的文件中。
if (fwrite($handle, $somecontent) === FALSE) {
echo "不能写入到文件 "e;{$filename}"e;";
exit;
}
echo "已把"e;{$somecontent}"e;写入到文件"e;{$filename}"e;";
fclose($handle); //将指针关闭
} else {
echo "文件{$filename}不可写.";
}
?>
第二种:
<?php
$filename = "test.txt";
$content = "this is test string.";
$put = file_put_contens($filename,$content);
if(!put)
exit("write failed");
echo "write success";
?>
❻ php 数组写入txt文件
需要使用抄PHP的var_export()袭
具体语法为:var_export($times,true);后面不加true不能写入文件
实例:
<?
$fp=fopen('aa.txt','w+');
fwrite($fp,var_export($times,true));
fclose($fp);
?>
❼ php,数组的内容怎么输到指定格式的txt文件
PHP中,使用var_export函数即可将数组格式写入到文件;示例如下:
<?php
$file="chinawinxp.txt";
$content=array(
"name"=>"网络知道",
"company"=>"网络在线",
"city"=>"北京",
"other"=>array(
"e"=>"网络教育",
"jingyan"=>"网络经验",
)
);
file_put_contents($file,var_export($content,true)." ",FILE_APPEND);
//写入结果
/**
array(
'name'=>'网络知道',
'company'=>'网络在线',
'city'=>'北京',
'other'=>
array(
'e'=>'网络教育',
'jingyan'=>'网络经验',
),
)
*/
?>
❽ php 怎么把数组写到文件里面
转成字符来串源,再写进文件,读取的话反过来就可以了
<?php
$arr=array('a','b','c');
file_put_contents('1.txt',implode(',',$arr));//www.hi-docs.com/php/file_put_contents.html
?>