我有一個數組$ x = array(a,b,c);數組中的每個元素都是一個url。php內爆問題
有一個函數鏈接($ x [$ i]),它將數組的每個元素轉換爲超鏈接。
function convert($x){
$new = explode(',',$x);
for($i=0;$i<count($new);$i++){
echo link($new[$i]); // converts the url to hyperlink
}
這將顯示輸出作爲URL1 URL2等,但WHT,如果我想的逗號「」 2個URL之間。我如何得到這個,沒有逗號','成爲超鏈接的一部分?
所需的輸出將
hyperlink1 , hyperlink2 etc // note comma ',' should not be part of the hyperlink
回波鏈路($新[$ I])。 「」; – dmcnelis 2011-02-24 22:54:45
你想把'array(「a」,「b」,「c」)'轉換成'「a,b,c」'? – Dogbert 2011-02-24 22:55:13
@dmcnelis:在每個值的末尾會附加','。我不想','在最後一個值之後。 – user550265 2011-02-24 22:57:27