Skip to content

Instantly share code, notes, and snippets.

View cvergne's full-sized avatar
👨‍💻
Probably developing…

Christophe VERGNE cvergne

👨‍💻
Probably developing…
View GitHub Profile
@cvergne
cvergne / freebox.login.php
Created June 29, 2013 13:07
Authentification à l'API Freebox OS en PHP
// Génération du mot de passe
$password = hash_hmac('sha1', $challenge, $app_token);
string(65) "<div>
<h1>Heading</h1>
<p>Something right here...</p>
</div>"
string(62) "<div>
<h1>Heading</h1>
<p>Something right here...</p>
</div>"
@cvergne
cvergne / gist:2301589
Created April 4, 2012 14:23
Check if date is in defined date range
$startDate = strtotime('2012-04-01');
$endDate = strtotime('2012-04-30');
$searchDate = strtotime('2012-04-18');
if ($searchDate >= $startDate && $searchDate <= $endDate) {
echo 'Notre date recherchée est bien dans la plage spécifiée.';
}