forked from vergnet/site-accueil-insa
18 lines
415 B
PHP
18 lines
415 B
PHP
|
<?php
|
||
|
function colored_text($str) {
|
||
|
$cl = ["red", "blue", "green", "orange", "grey", "brown", "purple"];
|
||
|
$str_out = "";
|
||
|
$ant_color = "";
|
||
|
|
||
|
for($i=0; $i<=strlen($str)-1 ;$i++) {
|
||
|
$color = $cl[rand(0, 6)];
|
||
|
while($color == $ant_color) {
|
||
|
$color = $cl[rand(0, 6)];
|
||
|
}
|
||
|
$ant_color = $color;
|
||
|
$str_out = $str_out."<font color='".$color."'>".$str[$i]."</font>";
|
||
|
}
|
||
|
|
||
|
return "<strong>".$str_out."</strong>";
|
||
|
}
|
||
|
?>
|