0
我有該代碼,我想限制結果爲10最大。 我該怎麼做?php如何限制結果
<?php
$actors = rtrim($movie_info[0]->actors, ", ");
if(stristr($actors, ",")) {
$actors = explode(",", $actors);
array_walk($actors, 'add_url_on_tags', '/actor');
echo ul($actors, array("class" => "genres2"));
echo '<div style="clear:both;"></div>';
}elseif(!empty($actors)) {
echo '<a href="/actor/'.url_title($actors).'">'.$actors.'</a><br />';
}else{
echo 'empty';
}
?>
感謝您的幫助!
KHMKShore,多數民衆贊成我正在尋找,非常感謝你:) – Insane
如果這回答你的問題,請馬克我點擊旁邊的綠色複選標記即可。謝謝。 – totallyuneekname