This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Génération du mot de passe | |
| $password = hash_hmac('sha1', $challenge, $app_token); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| string(65) "<div> | |
| <h1>Heading</h1> | |
| <p>Something right here...</p> | |
| </div>" | |
| string(62) "<div> | |
| <h1>Heading</h1> | |
| <p>Something right here...</p> | |
| </div>" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $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.'; | |
| } |
NewerOlder