程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP工作筆記:數組轉字符串與字符串轉數組,字符串數組

PHP工作筆記:數組轉字符串與字符串轉數組,字符串數組

編輯:關於PHP編程

PHP工作筆記:數組轉字符串與字符串轉數組,字符串數組


一個數組要入庫,發現不可以,特定用函數轉為字符串入庫

$data = array(
    'http://img4.bitautoimg.com/autoalbum/files/20110420/734/22494073435215_1565563_15.jpg',
    'http://img4.bitautoimg.com/autoalbum/files/20110420/718/22494071876770_1565547_15.jpg',
    'http://img2.bitautoimg.com/autoalbum/files/20110420/671/22494067187672_1565545_15.jpg'
);

用“,”分割,並轉為字符串

$data = array(
    'http://img4.bitautoimg.com/autoalbum/files/20110420/734/22494073435215_1565563_15.jpg',
    'http://img4.bitautoimg.com/autoalbum/files/20110420/718/22494071876770_1565547_15.jpg',
    'http://img2.bitautoimg.com/autoalbum/files/20110420/671/22494067187672_1565545_15.jpg'
);
$data = implode(",",$data);

轉換後的data效果:

http://img4.bitautoimg.com/autoalbum/files/20110420/734/22494073435215_1565563_15.jpg,http://img4.bitautoimg.com/autoalbum/files/20110420/718/22494071876770_1565547_15.jpg,http://img2.bitautoimg.com/autoalbum/files/20110420/671/22494067187672_1565545_15.jpg

  把字符串按照分隔符切割出來使用:

$newdata = explode(",",$data);

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved