The contents of the PHP database are saved as an array in the file

Source: Internet
Author: User
Tags explode mysql tutorial php database

$res =mysql Tutorial _query ("Select K1,k2 from". Table (' keywords '). " ") ;
$STR = "<?php rn";
while ($rs =mysql_fetch_array ($res))
{

$str. = "$keyword ['". $rs [0]. "'] = ' ". $rs [1]." '; RN ";
}
$str. = "?>";
File_put_contents ("keyword.php", $str);
echo "Export Success";

Method Two

$f =file_get_contents ("W1.txt");
$f =str_replace ("RN", "<br>", $f);//Replace line feed
$arr =explode ("<br>", $f);
$STR = "<?php rn";
foreach ($arr as $t)
{
$rs =explode ("|", $t);
Cannot contain? and other special symbols
$str. = "$keyword ['] Str_replace ("? "," ", $rs [0]). = ' ". Str_replace ("? "," ", $rs [1])." '; RN ";

}
$str. = "?>";
File_put_contents ("keyword.php", $str);
echo "Export Success";

//conn.php file
$conn =mysql_connect ($mysql _host, $mysql _user, $mysql _password) or Die (' Connect server error ');
Mysql_ select_db ($mysql _db) or Die ("Select Database Error");
mysql_query ("Set names ' GBK '");
Function table ($t)
{
 global $mysql _table_prefix
 return $mysql _table_prefix. $t;
}
?

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.