PHP將數組存入資料庫中的四種方式
最近突然遇到了一個問題,如何用PHP將數組存入到資料庫中,經過自己的多方尋找和研究,總結了以下四種方法:
1.implode()和explode()方式
2.print_r()和自訂函數方式
3.serialize()和unserialize()方式
4.json_encode()和json_decode()方式
<?php// 將數組存入資料庫中的四種方式詳見我的部落格 http://blog.csdn.net/the_victory//1.implode和explode方式//2.print_r和自訂函數方式//3.serialize和unserialize方式//4.json_encode和json_decode方式// 如果想運行該檔案,需要建立資料庫admin,和資料表test,或者修改代碼// //---------------------------------------------------------------// CREATE TABLE `test` (// `id` int(10) unsigned NOT NULL AUTO_INCREMENT key,// `array` text,// ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ; //定義用print_r將數組儲存到資料庫中的類header('content-type:text/html; charset=utf8');define("DB_HOST","localhost");define("DB_USER","root");define("DB_PWD","0227");define("DB_DBNAME","admin");define("DB_CHARSET","utf8");// 定義逆置print_r值的類class Trie { protected $dict = array(); protected $buf = ''; function set($word, $value='') { if(is_array($word)) foreach($word as $k=>$v) $this->set($k, $v); $p =& $this->dict; foreach(str_split($word) as $ch) { if(! isset($p[$ch])) $p[$ch] = array(); $p =& $p[$ch]; } $p['val'] = $value; return $this; } function parse($str) { $this->doc = $str; $this->len = strlen($str); $i = 0; while($i < $this->len) { $t = $this->find($this->dict, $i); if($t) { $i = $t; $this->buf = ''; }else $this->buf .= $this->doc{$i++}; } } protected function find(&$p, $i) { if($i >= $this->len) return $i; $t = 0; $n = $this->doc{$i}; if( isset($p[$n]) ) $t = $this->find($p[$n], $i+1); if($t) return $t; if( isset($p['val']) ) { $ar = explode(',', $p['val']); call_user_func_array( array($this, array_shift($ar)), $ar ); return $i; } return $t; } function __call($method, $param) { echo "****\n$this->buf 未定義方法:$method 參數:" . join(',', $param) . "<br />\n"; }}class App extends Trie { public $res = array(); protected $stack = array(); protected $keyname = ''; protected $buf = ''; function __construct() { $this->stack[] =& $this->res; } protected function group() { if(! $this->keyname) return; $cnt = count($this->stack) - 1; $this->stack[$cnt][$this->keyname] = array(); $this->stack[] =& $this->stack[$cnt][$this->keyname]; $this->keyname = ''; } protected function brackets($c) { $cnt = count($this->stack) - 1; switch($c) { case ')': if($this->keyname) $this->stack[$cnt][$this->keyname] = trim($this->buf); $this->keyname = ''; array_pop($this->stack); break; case '[': if($this->keyname) $this->stack[$cnt][$this->keyname] = trim($this->buf); break; case ']': $this->keyname = $this->buf; } $this->buf = ''; }}//類結束//////串連資料庫function connect(){ $link = @mysql_connect(DB_HOST,DB_USER,DB_PWD) or die("資料庫連接失敗ERR:".mysql_errno().":".mysql_error()); mysql_select_db(DB_DBNAME) or die("開啟資料庫失敗");//mysql_errno()即顯示錯誤數量;mysql_error()即顯示錯誤資訊; $sql = 'set names '.DB_CHARSET; mysql_query($sql) or die ("設定字元集失敗"); return $link;}//插入資料庫函數function insert($table, $array){$keys = join(",",array_keys($array));$vals = "'".join("','",array_values($array))."'";$sql = "insert {$table}({$keys})values({$vals})";mysql_query($sql);return mysql_insert_id();} //提取剛剛插入的資料 function select($table){ $sql = "select array from {$table} order by id desc"; if($result = mysql_query($sql)){ $values = mysql_fetch_assoc($result); $value = array_pop($values); }else{ echo '提取失敗'; } return $value; }//implode方式 一維數組可以,二維數組不可以,並且關聯陣列無效function plode($table,$arr){echo '<h3 style="color:red"><b>implode</b>方式<br/>原數組,未插入前:</h3>';var_dump($arr);$str = addslashes(implode(",", $arr));$insert = array('id'=>'','array'=>$str);if(insert($table,$insert)){echo "插入成功.<br/>";}else{echo "插入失敗";exit;}$value = select($table);echo '<h3 style="color:red"><插入的內容:></h3>';var_dump($value);$explode = explode(",",$value);echo '<h3 style="color:red"><最終提取後處理的內容:></h3>';var_dump($explode);}// print_r方式function printR($table,$arr){echo '<h3 style="color:red"><b>print_r方式</b><br/>原數組,未插入前:></h3>';var_dump($arr);$print = addslashes(print_r($arr, true));$insert = array('id'=>'','array'=>$print);insert($table,$insert);$value = select($table);echo '<h3 style="color:red"><插入的內容:></h3>';var_dump($value);$p = new App;$p->set('Array','group') ->set('[','brackets,[') ->set('] =>','brackets,]') ->set(')','brackets,)');$p->parse($value);echo '<h3 style="color:red"><最終提取後處理的內容:></h3>';var_dump($p->res);}// serialize方式function serial($table,$arr){echo '<h3 style="color:red"><b>serialize</b>方式<br/>原數組,未插入前:</h3>';var_dump($arr);$serialize = addslashes(serialize($arr));$insert = array('id'=>'','array'=>$serialize);insert($table,$insert);$value = select($table);echo '<h3 style="color:red"><方式插入資料庫中的內容:></h3>';var_dump($value);$serialize = unserialize($value);echo '<h3 style="color:red"><最終提取後處理的內容:></h3>';var_dump($serialize);}//json方式function json($table,$arr){echo '<h3 style="color:red"><b>json_encode</b>方式<br/>原數組,未插入前:</h3>';var_dump($arr);$enjson = addslashes(json_encode($arr));$insert = array('id'=>'','array'=>$enjson);insert($table,$insert);$value = select($table);echo '<h3 style="color:red"><方式插入資料庫中的內容:></h3>';var_dump($value);$deunjson = json_decode($value,true);echo '<h3 style="color:red"><最終提取後處理的內容:></h3>';var_dump($deunjson);}// 執行函數 //函數end?><form action="" method="get"><select name="kind"><option value="1">一維數組</option><option value="2">二維數組</option></select><select name="id"><option value="1">implode方式</option><option value="2">print_r方式</option><option value="3">serialize方式</option><option value="4">json_encode方式</option></select><input type="submit" value="提交" name="submit"></form><?phpif(!empty($_GET['submit'])){$kind = $_GET['kind'];$id = $_GET['id'];}else{echo "請選擇後按提交鍵";exit;} connect();$ar1 =array('abcd'=>"sdfasdf",'bbb'=>'lxg','ccc'=>'bbbbbbbbb');//定義一個一維數組$ar2 = array('a'=>$ar1,'b'=>$ar1);//二維數組$table = "test";//使用的資料表if($kind=='1'){$arr = $ar1;}else{$arr = $ar2;}switch ($id) {case '1':# code...plode($table, $arr);break;case '2':printR($table,$arr);break;case '3':serial($table,$arr);break;case '4':json($table,$arr);break;default:break;}?>
1.implode方式結果:
一維數組:
二維數組:報錯
2.print_r方式
一維數組:
二維數組:
3.serialize方式:
一維數組:
二維數組:
4.json方式
一維數組:
二維數組:
以上幾種方法從插入資料庫的資料大小來看json方式最好,該示範中沒有使用中文,如果將數組改成中文你會發現json的強大之處,第一種方式無法將多維陣列存入資料庫中,第二種方式還要用自訂類,推薦使用第三種和第四種方式。
自己畢竟能力有限,如果大家發現更多的方式和文章的不足之處,希望能指出,謝謝。