mirror of https://github.com/harish2704/dotFiles
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
278 B
8 lines
278 B
snippet jd "json dump and die"
|
|
echo json_encode(${1}, JSON_PRETTY_PRINT); die();${0:}
|
|
|
|
snippet pjd "json dump and die"
|
|
echo '<pre>';echo json_encode(${1}, JSON_PRETTY_PRINT); echo '</pre>'; die();${0:}
|
|
|
|
snippet ppbt
|
|
echo '<pre>'; debug_print_backtrace(); echo '</pre>';${0:}
|
|
|