程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php中拆分和組合字符串函數介紹

php中拆分和組合字符串函數介紹

編輯:關於PHP編程

在php中拆分字符串我們會用到explode或者split函數,如果我們要組合字符串就可以使用implode或使用.號直接連接了

字符組合

 代碼如下 復制代碼

for($k=2;$k<5;$k++)
{
 if(!empty(${'pfile'.$k}))
 { echo ${'pfile'.$k};}//那麼相當於輸出的是$pfile2,$pfile3.......}
}

implode() 函數把數組元素組合為一個字符串。

注釋:implode() 可以接收兩種參數順序。但是由於歷史原因,explode() 是不行的。你必須保證 separator 參數在 string 參數之前才行。

例子

 代碼如下 復制代碼 <?php
$arr = array('Hello','World!','Beautiful','Day!');
echo implode(" ",$arr);
?>

輸出:

Hello World! Beautiful Day!

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


注釋:參數 limit 是在 PHP 4.0.1 中加入的。

注釋:由於歷史原因,雖然 implode() 可以接收兩種參數順序,但是 explode() 不行。你必須保證 separator參數在 string 參數之前才行。

例子在本例中,我們將把字符串分割為數組:

 代碼如下 復制代碼

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

輸出:

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

一個不錯的php分割合並兩個字符串的函數

 代碼如下 復制代碼

/**
 * Merges two strings in a way that a pattern like ABABAB will be
 * the result.
 *
 * @param     string    $str1   String A
 * @param     string    $str2   String B
 * @return    string    Merged string
 */ 
function MergeBetween($str1, $str2){
 
    // Split both strings
    $str1 = str_split($str1, 1);
    $str2 = str_split($str2, 1);
 
    // Swap variables if string 1 is larger than string 2
    if (count($str1) >= count($str2))
        list($str1, $str2) = array($str2, $str1);
 
    // Append the shorter string to the longer string
    for($x=0; $x < count($str1); $x++)
        $str2[$x] .= $str1[$x];
 
    return implode('', $str2);
}


//范例演示:
print MergeBetween('abcdef', '__') . "n";
print MergeBetween('__', 'abcdef') . "n";
print MergeBetween('bb', 'aa') . "n";
print MergeBetween('aa', 'bb') . "n";
print MergeBetween('a', 'b') . "n";
 
/*
Output:
 
a_b_cdef
a_b_cdef
baba
abab
ab
*/

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