php分割字串並輸出數組字元例子

來源:互聯網
上載者:User

   在php中分割字元函數可以使用explode()函數,但是使用此函數必須要有一個規律了,如以|分開或以其它字元分開,這樣我們就可以直接使用explode把字串分成數組之後再利用for遍曆輸出,下面來看幾個例子。

  explode() 函數把字串分割為數組。

  文法

  explode(separator,string,limit)

  例子一

 代碼如下  

<?php
$test='472347127,893372115,850965403';
$r=explode(",",$test);
for($i=0;$i<sizeof($r);$i++)
{ echo $i.".". $r[$i].""; }
?>

  輸出: 0.472347127 1.893372115 2.850965403

  例子二

 代碼如下  

<?php
$a="893372115,472347127,850965403" ;
$b=explode(",",$a);
foreach($b as $bb)
{ echo $bb.""; //print_r($b); }
?>

  輸出: 893372115 472347127 850965403 PHP

  逗號 分割字串

  利用 explode 函數分割字串到數組

 代碼如下  

<?php

$source = "hello1,hello2,hello3,hello4,hello5";//按逗號分離字串 
$hello = explode(',',$source);

for($index=0;$index<count($hello);$index++){ 
echo $hello[$index];echo "</br>"; 
}

?>

  split函數進行字元分割

 代碼如下  

<?php

// 分隔字元可以是斜線,點,或橫線 
$date = "04/30/1973"; 
list($month, $day, $year) = split ('[/.-]', $date); 
echo "Month: $month; Day: $day; Year: $year<br />n"; 
?>

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.