/**
* generate_rand
*
* chaine de caractère aléatoire.
*
* @param length nombre de caractères
*/
function generate_rand($length=4) {
$chn = '';
for ($i = 1; $i <= $length; $i++)
$chn .=chr(floor(rand(0, 25) + 97));
return $chn;
}
aleatoire fonctions php
<iframe width="100%" height="434" src="http://snipet.teknotit.com/index.php?embed=5440918b74687" type="text/html"></iframe>
Texte seul - Permalink - Snippet public posté le 17/10/2014