Skip to content

Instantly share code, notes, and snippets.

View rzds's full-sized avatar
🤡
You're not my doctor, ok?

rzds

🤡
You're not my doctor, ok?
View GitHub Profile
@rzds
rzds / googleChartColors.js
Last active November 22, 2017 23:37
Google Chart Colors List
var googleChartColors = [
'#3366CC', '#DC3912', '#FF9900', '#109618',
'#990099', '#3B3EAC', '#0099C6', '#DD4477',
'#66AA00', '#B82E2E', '#316395', '#994499',
'#22AA99', '#AAAA11', '#6633CC', '#E67300',
'#8B0707', '#329262', '#5574A6', '#3B3EAC'
];
<?php
/**
* Convert date in PHP
* available for php > 5.3
*/
function convertDate($date, $old_format="d/m/Y", $new_format='Y-m-d'){
$datetime = DateTime::createFromFormat($old_format, $date);
return $datetime->format($new_format);
}
?>