Tous les codes sourcespage 65
PHP
4 June, 2014 à 07:51
#161
function _CLK_TCK() {
// FIXME: this is clearly not always right.
// But how to figure out the right value?
return 100.0;
}
PHP
3 June, 2014 à 09:22
#213
function isCC($num)
{
$length = strlen($num);
$fuck = 0;
for($i = $length-1; $i>=0; $i--)
{
$digit = substr($num, $i, 1);
if ((($length - $i) % 2) == 0)
{
$digit = $digit * 2;
if ($digit > 9)
$digit = $digit - 9;
}
$fuck += $digit;
}
return (($fuck % 10) == 0);
}