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
private function twoDigits($number) | |
{ | |
if($number <= 9) | |
return '0' . $number; | |
else | |
return $number; | |
} |
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
function strrchr (haystack, needle) { | |
var pos = 0; | |
if (typeof needle !== 'string') | |
needle = String.fromCharCode(parseInt(needle, 10)); | |
needle = needle.charAt(0); | |
pos = haystack.lastIndexOf(needle); | |
if (pos === -1) |
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
<!DOCTYPE html> | |
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="lang"> <![endif]--> | |
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="lang"> <![endif]--> | |
<!--[if gt IE 8]><!--> <html class="no-js" lang="${1:fr}"> <!--<![endif]--> | |
<head> | |
<meta charset="utf-8" /> | |
<meta name="description" content="" /> | |
<meta name="keywords" content="" /> | |
<!-- Geo position --> |
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
<?php | |
/** | |
* Get a distinct multi dimensional array | |
* | |
* @param array $array | |
* array to distinct | |
* @param string $keySearch | |
* string key to search double array | |
* @param boolean $overwrite = false | |
* boolean to allow values to be overwritten |
NewerOlder