好吧,我知道它可以像這樣做...用於在數組中匹配匹配索引字符串的PHP函數?
$Array1 = array("Hello, ", "foo", "The quick brown fox jumped ");
$Array2 = array("World!", "bar", "the lazy dog.");
$Array3 = array();
for($x = 0; $x < count($Array1); $x++) {
$Array3[] = $Array1[$x] . $Array2[$x];
}
// returns this -> ("Hello, World", "foobar", "The quick brown fox jumped over the lazy dog.")
但有一個本地的PHP函數嗎?就像這樣:
$Array3 = array_concat_strings($Array1, $Array2)
我通過php.net搜查,並沒有發現什麼,但我想證實我不是失去了一些東西。
哦。整潔。我可能不得不使用這個。 – Yoshiyahu 2012-02-21 05:25:11
需要PHP 5.3+,BTW。 5.2-的語法需要'create_function('$ a,$ b','return $ a。$ b;')''。 – deceze 2012-02-21 05:33:24