程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> 解讀PHP函數explode()的具體使用方法

解讀PHP函數explode()的具體使用方法

編輯:關於PHP編程

目前PHP函數explode()把字符串分割為數組
explode(separator,string,limit)
separator 必需。規定在哪裡分割字符串。
string 必需。要分割的字符串。
limit 可選。規定所返回的數組元素的最大數目。

PHP函數explode()例子
 

  1. <?php 
  2. $str = "Hello world. It's a beautiful day.";  
  3. print_r (explode(" ",$str));  
  4. ?> 

輸出:
 

  1. Array  
  2. (  
  3. [0] => Hello  
  4. [1] => world.  
  5. [2] => It's  
  6. [3] => a  
  7. [4] => beautiful  
  8. [5] => day.  

以上代碼示例就是PHP函數explode()的具體使用。


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