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

PHP數組轉字符串與PHP字符串轉數組的相關方法解析

編輯:關於PHP編程

我們今天為大家介紹的PHP數組轉字符串 implode()

  1. <?php 
  2. $vegetables[0] = "corn";  
  3. $vegetables[1] = "broccoli";  
  4. $vegetables[2] = "zucchini";  
  5. $text = implode(",", $vegetables);  
  6. echo $text;  
  7. ?> 

運行結果

corn,broccoli,zucchini

2 PHP字符串轉數組 explode()

  1. <?php 
  2. $text = "corn, broccoli, zucchini";  
  3. $vegetables = explode(", ", $text);  
  4. print_r($vegetables);  
  5. ?> 

運行結果:

  1. Array  
  2. (  
  3. [0] => corn  
  4. [1] => broccoli  
  5. [2] => zucchini  

以上兩段代碼就是我們向大家介紹的關於PHP數組轉字符串和PHP字符串轉數組的相關代碼。


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