用php調(diào)用txt數(shù)據(jù)的簡(jiǎn)單介紹

求教php使用TXT數(shù)據(jù)庫(kù)(讀取和修改文本)

我建議一下吧,文本數(shù)據(jù)庫(kù)的例子本來(lái)太多,但是為了邏輯簡(jiǎn)化,最好通過(guò)專門接口實(shí)現(xiàn)文件與數(shù)據(jù)的轉(zhuǎn)換,可以采用我下面的模板編寫:

文峰ssl適用于網(wǎng)站、小程序/APP、API接口等需要進(jìn)行數(shù)據(jù)傳輸應(yīng)用場(chǎng)景,ssl證書未來(lái)市場(chǎng)廣闊!成為創(chuàng)新互聯(lián)建站的ssl證書銷售渠道,可以享受市場(chǎng)價(jià)格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:13518219792(備注:SSL證書合作)期待與您的合作!

?php

//文件最前面定義兩個(gè)全局變量,數(shù)據(jù)庫(kù)文件名和用戶數(shù)組

$pwd_db_file='db.txt';

$UserPassword=array();

//下面的pwd_db_read函數(shù),把文件內(nèi)容讀入到全局?jǐn)?shù)組中

function pwd_db_read(){

global $pwd_db_file, $UserPassword;

$fp=fopen($pwd_db_file,'r');

while ($s=fgets($fp)){

list($usr,$pwd)=explode('|', $s);

$UserPassword[$usr]=$pwd;

}

fclose($fp);

}

//下面的pwd_db_write函數(shù)保存數(shù)組內(nèi)容到文件中

function pwd_db_write(){

global $pwd_db_file, $UserPassword;

fp=fopen($pwd_db_file, 'w');

foreach ($UserPassword as $usr=$pwd)

fputs($fp,"$usr|$pwd\n");

fclose($fp);

}

//有了上面的全局變量和函數(shù),要寫什么功能都簡(jiǎn)單

//下面假釋本腳本調(diào)用的時(shí)候通過(guò)reg.php?job=adduser=...pass=...

//的格式進(jìn)行調(diào)用,job為add表示添加用戶,del表示刪除,modi表示修改

//另外的user和pass表示用戶名或者密碼,job不是以上內(nèi)容表示登錄

//主程序一開(kāi)始就打開(kāi)數(shù)據(jù)庫(kù)

pwd_db_read();

//下面判斷功能

if ($jon=='add'){

if (array_key_exists($user,$UserPassword)) echo "用戶 $user 已經(jīng)存在!"

else $UserPassword[$user]=$pass;//就一句話,簡(jiǎn)單吧

}elseif (job=='del'){

unset($UserPassword[$user]);//你自己考慮編寫是否確認(rèn)刪除的內(nèi)容

}elseif ($job=='modi'){

if (array_key_exists($user,$UserPassword)) $UserPassword[$user]=$pass;//和添加是不是有點(diǎn)類似

else echo "用戶 $user 不存在!"

}else{

if ($UserPassword[$user]==$pass){

echo '密碼正確。';

//接下來(lái)可能要做許多事情

}else echo '密碼錯(cuò)誤!';

}

//程序最后保存數(shù)據(jù)庫(kù)修改

pwd_db_write();

?

看得懂嗎,沒(méi)有上機(jī)調(diào)試,語(yǔ)法問(wèn)題可能難免,如果發(fā)現(xiàn)不明白的問(wèn)題請(qǐng)補(bǔ)充。

用php讀取txt內(nèi)容

首先f(wàn)open讀取TXT文件,獲取一個(gè)文件指針,然后fgets獲取一行,再fgets繼續(xù)讀取下一行

官方例子:

?php

$f?=?fopen?("fgetstest.php",?"r");

$ln=?0;

while?(!?feof?($f))?{

$line=?fgets?($f);

++$ln;

printf?("%2d:?",?$ln);

if?($line===FALSE)?print?("FALSE\n");

else?print?($line);

}

fclose?($f);

這個(gè)前提是你的$f這個(gè)文件指針不能關(guān)閉,如果你想在不同請(qǐng)求的情況下實(shí)現(xiàn),那就要吧$f做全局存儲(chǔ)了,看看存session可否(我沒(méi)做過(guò),不確定,你試試看)

php讀取txt內(nèi)容

form action='' method="post"

輸入字母:

input type="text" name="cs"

input type="submit"

/form

?php

//獲取post值

$cs = empty($_POST['cs']) ? "" : $_POST['cs'];

//post值為空直接返回

if($cs==""){return '';}

//打開(kāi)diqu.txt文件資源

$file = fopen("diqu.txt", "r") or exit("未找到文件!");

//逐行查找post傳遞的字符

while(!feof($file))

{

//如果找到post傳遞的字符就返回該行的值

if($val = strstr(fgets($file),$cs)){echo str_replace($cs,'',$val);return "";}

}

//關(guān)閉文件

fclose($file);

?

如何利用php讀取txt文件再將數(shù)據(jù)插入到數(shù)據(jù)庫(kù)

serial_number.txt的示例內(nèi)容:

serial_number.txt:

DM00001A11 0116,

SN00002A11 0116,

AB00003A11 0116,

PV00004A11 0116,

OC00005A11 0116,

IX00006A11 0116,

創(chuàng)建數(shù)據(jù)表:

create table serial_number(

id int primary key auto_increment not null,

serial_number varchar(50) not null

)ENGINE=InnoDB DEFAULT CHARSET=utf8;

php代碼如下:

$conn = mysql_connect('127.0.0.1','root','') or die("Invalid query: " . mysql_error());

mysql_select_db('test', $conn) or die("Invalid query: " . mysql_error());

$content = file_get_contents("serial_number.txt");

$contents= explode(",",$content);//explode()函數(shù)以","為標(biāo)識(shí)符進(jìn)行拆分

foreach ($contents as $k = $v)//遍歷循環(huán)

{

$id = $k;

$serial_number = $v;

mysql_query("insert into serial_number (`id`,`serial_number`)

VALUES('$id','$serial_number')");

}

備注:方法有很多種,我這里是在拆分txt文件為數(shù)組后,然后遍歷循環(huán)得到的數(shù)組,每循環(huán)一次,往數(shù)據(jù)庫(kù)中插入一次。

再給大家分享一個(gè)支持大文件導(dǎo)入的

?php

/**

* $splitChar 字段分隔符

* $file 數(shù)據(jù)文件文件名

* $table 數(shù)據(jù)庫(kù)表名

* $conn 數(shù)據(jù)庫(kù)連接

* $fields 數(shù)據(jù)對(duì)應(yīng)的列名

* $insertType 插入操作類型,包括INSERT,REPLACE

*/

function loadTxtDataIntoDatabase($splitChar,$file,$table,$conn,$fields=array(),$insertType='INSERT'){

if(empty($fields)) $head = "{$insertType} INTO `{$table}` VALUES('";

else $head = "{$insertType} INTO `{$table}`(`".implode('`,`',$fields)."`) VALUES('"; //數(shù)據(jù)頭

$end = "')";

$sqldata = trim(file_get_contents($file));

if(preg_replace('/\s*/i','',$splitChar) == '') {

$splitChar = '/(\w+)(\s+)/i';

$replace = "$1','";

$specialFunc = 'preg_replace';

}else {

$splitChar = $splitChar;

$replace = "','";

$specialFunc = 'str_replace';

}

//處理數(shù)據(jù)體,二者順序不可換,否則空格或Tab分隔符時(shí)出錯(cuò)

$sqldata = preg_replace('/(\s*)(\n+)(\s*)/i','\'),(\'',$sqldata); //替換換行

$sqldata = $specialFunc($splitChar,$replace,$sqldata); //替換分隔符

$query = $head.$sqldata.$end; //數(shù)據(jù)拼接

if(mysql_query($query,$conn)) return array(true);

else {

return array(false,mysql_error($conn),mysql_errno($conn));

}

}

//調(diào)用示例1

require 'db.php';

$splitChar = '|'; //豎線

$file = 'sqldata1.txt';

$fields = array('id','parentid','name');

$table = 'cengji';

$result = loadTxtDataIntoDatabase($splitChar,$file,$table,$conn,$fields);

if (array_shift($result)){

echo 'Success!br/';

}else {

echo 'Failed!--Error:'.array_shift($result).'br/';

}

/*sqlda ta1.txt

1|0|A

2|1|B

3|1|C

4|2|D

-- cengji

CREATE TABLE `cengji` (

`id` int(11) NOT NULL AUTO_INCREMENT,

`parentid` int(11) NOT NULL,

`name` varchar(255) DEFAULT NULL,

PRIMARY KEY (`id`),

UNIQUE KEY `parentid_name_unique` (`parentid`,`name`) USING BTREE

) ENGINE=InnoDB AUTO_INCREMENT=1602 DEFAULT CHARSET=utf8

*/

//調(diào)用示例2

require 'db.php';

$splitChar = ' '; //空格

$file = 'sqldata2.txt';

$fields = array('id','make','model','year');

$table = 'cars';

$result = loadTxtDataIntoDatabase($splitChar,$file,$table,$conn,$fields);

if (array_shift($result)){

echo 'Success!br/';

}else {

echo 'Failed!--Error:'.array_shift($result).'br/';

}

/* sqldata2.txt

11 Aston DB19 2009

12 Aston DB29 2009

13 Aston DB39 2009

-- cars

CREATE TABLE `cars` (

`id` int(11) NOT NULL AUTO_INCREMENT,

`make` varchar(16) NOT NULL,

`model` varchar(16) DEFAULT NULL,

`year` varchar(16) DEFAULT NULL,

PRIMARY KEY (`id`)

) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8

*/

//調(diào)用示例3

require 'db.php';

$splitChar = ' '; //Tab

$file = 'sqldata3.txt';

$fields = array('id','make','model','year');

$table = 'cars';

$insertType = 'REPLACE';

$result = loadTxtDataIntoDatabase($splitChar,$file,$table,$conn,$fields,$insertType);

if (array_shift($result)){

echo 'Success!br/';

}else {

echo 'Failed!--Error:'.array_shift($result).'br/';

}

/* sqldata3.txt

11 Aston DB19 2009

12 Aston DB29 2009

13 Aston DB39 2009

*/

//調(diào)用示例3

require 'db.php';

$splitChar = ' '; //Tab

$file = 'sqldata3.txt';

$fields = array('id','value');

$table = 'notExist'; //不存在表

$result = loadTxtDataIntoDatabase($splitChar,$file,$table,$conn,$fields);

if (array_shift($result)){

echo 'Success!br/';

}else {

echo 'Failed!--Error:'.array_shift($result).'br/';

}

//附:db.php

/* //注釋這一行可全部釋放

?

?php

static $connect = null;

static $table = 'jilian';

if(!isset($connect)) {

$connect = mysql_connect("localhost","root","");

if(!$connect) {

$connect = mysql_connect("localhost","Zjmainstay","");

}

if(!$connect) {

die('Can not connect to database.Fatal error handle by /test/db.php');

}

mysql_select_db("test",$connect);

mysql_query("SET NAMES utf8",$connect);

$conn = $connect;

$db = $connect;

}

?

//*/

.

-- 數(shù)據(jù)表結(jié)構(gòu):

-- 100000_insert,1000000_insert

CREATE TABLE `100000_insert` (

`id` int(11) NOT NULL AUTO_INCREMENT,

`parentid` int(11) NOT NULL,

`name` varchar(255) DEFAULT NULL,

PRIMARY KEY (`id`)

) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8

100000 (10萬(wàn))行插入:Insert 100000_line_data use 2.5534288883209 seconds

1000000(100萬(wàn))行插入:Insert 1000000_line_data use 19.677318811417 seconds

//可能報(bào)錯(cuò):MySQL server has gone away

//解決:修改my.ini/my.cnf max_allowed_packet=20M

php調(diào)用txt數(shù)據(jù)的順序

$file = 'hi.txt';

//$content = file_get_contents($file);

//$array = explode("\r\n", $content);

$array = file($file);

$lines=(count($array)0)?count($array):1;

for($i=$lines-1; $i=0; $i--)

{

// echo $array[$i].'br /';

echo "a href='http://".$array[$i]."/'".$array[$i]."/a ";

}

php如何調(diào)用某個(gè)文件夾里面某個(gè)txt內(nèi)容

思路,你可以把文件名按照一定規(guī)則,然后隨機(jī)生成文件名來(lái)讀取,或者獲取目錄下的所有txt生成個(gè)數(shù)組,然后沖數(shù)組中隨機(jī)抽取來(lái)搞定。

分享題目:用php調(diào)用txt數(shù)據(jù)的簡(jiǎn)單介紹
鏈接URL:http://muchs.cn/article28/hgepcp.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供商城網(wǎng)站、虛擬主機(jī)云服務(wù)器、標(biāo)簽優(yōu)化關(guān)鍵詞優(yōu)化、域名注冊(cè)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

綿陽(yáng)服務(wù)器托管