Tous les codes sources "Mais pourquoi ?"page 31
Java
11 Juillet, 2014 à 07:42
#121
try {
return true;
} finally {
return false;
}
PHP
07 Juillet, 2014 à 08:25
#225
function getIsTroifois($order) {
if ($order->getPayment()->getMethod() == '3X')
return $order->hasSim();
}
function hasSim() {
return $this->getPrice() != '1.00' ? false: $this->getPrice();
}
PHP
07 Juillet, 2014 à 06:43
#154
<?php
$hash = sha1(crc32(md5($_POST['password'])));
?>