|
|
|
อยากทราบวิธี Import / Export to File .Sql โดยใช้ PHP CODE |
|
|
|
|
|
|
|
ลองดูผ่าน mysqlmump ครับ ในกระทู้เก่า ๆ มีแนะนำหลายตัว แต่อันที่จริงใช้ผ่าน phpMyAdmin นี่ผิดเพี้ยนน้อยครับ
|
|
|
|
|
Date :
2015-06-20 15:13:46 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองศึกษาเรื่อง fetch_field เพื่อดู field info
หรือถ้าจะเก็บ แค่ ข้อมูลไม่เอา field type
ก็ลองอ่านค่าแล้ว มา write ลง file เอาเลย
ตัวอย่างแบบคร่าวๆ
Code (PHP)
$db=new mysqli('host', 'user', 'psw', 'dbname');
$rs = $db->query('select * from tablename');
$f = fopen('file.sql', 'w');
while( $ro = $rs->fetch_row()){
$txt = '';
foreach($ro as $value){
$txt .= ($txt? ',' : '') . "'".$db->real_escape_string($value)."'";
}
fwrite($f, "insert into tablename values( $txt );\n";
}
|
|
|
|
|
Date :
2015-06-21 05:12:34 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากครับ จะลองดูครับ
|
|
|
|
|
Date :
2015-06-22 08:30:48 |
By :
northstar |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|