0
對不起,我的英語不好。如何在變量逗號後分開單詞做出鏈接?
我想做一個標籤雲,我不知道如何通過單詞從字符串中獲取單詞。
我這裏是我想要
$text = "admin,demo"; //whit foreach in php
到
<a href="/admin" title="admin">admin</a><a href="/demo" title="demo">demo</a>
請幫我:(
一個問題我是如何從多個行僅獲得獨特的數組什麼:
<?php
error_reporting(E_ALL);
ini_set('display_errors', '1');
include_once ('/var/www/video/configs/db.php');
$query = @mysql_query("SELECT * FROM videos ORDER BY VIDEOID ASC LIMIT 0,10");
while($row = @mysql_fetch_array($query)){ $tags = $row['tags']; }
$rand = rand(5, 55);
$list = explode(',', $tags);
foreach ($list as $link) {
$tags = array(array('tag' => "$link", 'num' => $rand, 'link' => "$link"),);
$array = array_unique($tags); print_r($array);
}
?>
exeample行:開源,Smarty,xarg,PHP,羅伯特
[你有什麼試過?](http://mattgemmell.com/2008/12/08/what-have-you-tried /)你卡在哪裏? – Bjoern 2013-03-10 19:26:57
'爆炸(',',$文本)' – bitWorking 2013-03-10 19:29:34