Volendo inserire una limitazione in
Codice PHP:
foreach( (array)$linklist as $slug=>$title )
        
$links_html.= sprintf$formatmakeLinkslugUrl($slug),$title ) );
    echo 
$links_html $before.$links_html.$after
come mai non funziona questo listato?
Codice PHP:
$i 0;
    
$n count($linklist);
    while ( (
$i 5) && ($i $n) )
    {
        
$links_html.= sprintf$formatmakeLinkslugUrl($i),$linklist[$i] ) );
        
$i++;
    }