Added snippet for to print wa variable to a file

This commit is contained in:
Michael Thessel 2013-04-13 15:57:44 +00:00
parent 8ec2e4ce7a
commit c9336b759a

View File

@ -343,6 +343,8 @@ snippet vd
var_dump(${1});
snippet vdd
var_dump(${1}); die(${2:});
snippet vdf
error_log(print_r($${1:foo}, true), 3, '${2:/tmp/debug.log}');${3}
snippet http_redirect
header ("HTTP/1.1 301 Moved Permanently");
header ("Location: ".URL);