真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

php數(shù)據(jù)存文本中 php把數(shù)據(jù)寫入文本

php保存編輯框內容到文本

需要用form來提交表格數(shù)據(jù),將HTML改為:

創(chuàng)新互聯(lián)從2013年開始,先為巧家等服務建站,巧家等地企業(yè),進行企業(yè)商務咨詢服務。為巧家企業(yè)網(wǎng)站制作PC+手機+微官網(wǎng)三網(wǎng)同步一站式服務解決您的所有建站問題。

form?action="submit.php"?method="post"

pinput?name="user"?size="16"?type="text"?class="input_style"http://p

pinput?type="password"?name="passwd"?size="17"?class="input_style"http://p

pinput?name=""?type="submit"?class="search_an"/

/form

新建一個submit.php:

?php

if(!isset($_POST["user"])?||?!isset($_POST["passwd"]))?die("Forbidden");

$fp?=?fopen("data.txt",?"w+");

$flag?=?fwrite($fp,?$_POST["user"]?.?"|"?.?$_POST["passwd"]?.?"\r\n");

!$flag???die("Error")?:?echo?"Success";

fclose($fp);?

?

關于PHP文件操作: php保存數(shù)據(jù)到文本文件,怎么弄?

把你要保存的數(shù)據(jù)序列化一下,保存到文本中,如果需要修改,則從文本中取出,在反序列化化,在修改后,在序列化一下,保存到文本中。

文本的讀寫 參考fopen 等函數(shù)

PHP保存提交的數(shù)據(jù)保存的本地的一個文本里面

?php

if?($fp=fopen("1.txt","a")){

fputs($fp,$REQUEST{'數(shù)據(jù)'});

fclose($fp);

}

?

PHP將數(shù)據(jù)寫入txt文件

//記錄返回值

? ? $write_data_a = [

? ? ? ? 'html_url'? =? $getUrl,

? ? ? ? 'ip'? ? = $this-get_real_ip(),

? ? ? ? 'time'? =? date("Y-m-d H:i:s",time()),

? ? ? ? 'res'?? = $response

? ? ];

//轉化為JSON

? ? $write_data_a = json_encode($write_data_a) . '||' . "\n";

? ? $date = date("Y-m-d", time());

//項目路徑目錄,判斷是否存在,不存在則創(chuàng)建

? ? $lujing = "./360_mobile_res_sd";

? ? if(!is_dir($lujing)){

? ? ? ? mkdir(iconv("UTF-8", "GBK", $lujing),0777,true);

? ? }

//文件,判斷是否存在,不存在則創(chuàng)建

? ? $TxtFileName = "./360_mobile_res_sd/" . $date . "_2.txt";

? ? //以讀寫方式打寫指定文件,如果文件不存則創(chuàng)建

? ? if(file_exists($TxtFileName))

? ? {

//存在,追加寫入內容

? ? ? ? file_put_contents($TxtFileName, $write_data_a, FILE_APPEND);

? ? }

? ? else

? ? {

//不存在,創(chuàng)建并寫入

? ? ? ? if( ($TxtRes=fopen ($TxtFileName,"w+")) === FALSE){

? ? ? ? ? ? exit();

? ? ? ? }

? ? ? ? if(!fwrite ($TxtRes,$write_data_a)){ //將信息寫入文件

? ? ? ? ? ? fclose($TxtRes);

? ? ? ? ? ? exit();

? ? ? ? }

? ? ? ? fclose ($TxtRes); //關閉指針

? ? }


新聞名稱:php數(shù)據(jù)存文本中 php把數(shù)據(jù)寫入文本
文章源于:http://weahome.cn/article/doiihoo.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部