Skip to content

Instantly share code, notes, and snippets.

View rafatrace's full-sized avatar
🚴
Jumping around

Rafa Morais rafatrace

🚴
Jumping around
View GitHub Profile
@LastDreamer
LastDreamer / hl.php
Last active February 26, 2019 08:48
hl - syntax highlight print_r analog
<?php
/**
* hl - syntax highlight print_r analog
* @author Oleg Kravchenko <lex69@list.ru>
*/
static function hl($value, $return = false)
{
// color_theme for hl
ini_set('highlight.string', '#99CF50');
ini_set('highlight.keyword', '#F8F8F8');
@fullybaked
fullybaked / usort.php
Created September 1, 2015 12:05
Usort with PHP7 Spaceship vs PHP5.6
<?php
// PHP 5.6
usort($array, function($a, $b) {
if ($a == $b) {
return 0;
}
return ($a < $b) ? -1 : 1;
});