<?php
$arr = array('msg1', 'msg2', 'msg3');
while(...) {
$bl = next($arr);
echo '<div class="'.($bl === FALSE ? reset($arr) : $bl).'"> mpg</div>';
}
?>
<?php
$arr = array('msg1', 'msg2', 'msg3');
while(...) {
$bl = next($arr);
echo '<div class="'.($bl === FALSE ? reset($arr) : $bl).'"> mpg</div>';
}
?>
1-й цвет(ссыль)
[blue]2-й цвет(ссыль)[/blue]
[green]3-й цвет(ссыль)[/green]
Это вроде с перва виводится 1 если обнавляю 2 если ишё обнавляю 3 так?
function zebra(){
static $divs;
if(!isset($divs) || $divs != func_get_args()) $divs = func_get_args();
$div = current($divs);
if(next($divs) === false) reset($divs);
return $div;
}