# HG changeset patch # User Oleksandr Gavenko # Date 1324503731 -7200 # Node ID 7396fd5619e71a97ed9dd18e83190c7ab363ff3f # Parent 101697080733e19275d90d8a195227f594a4086c# Parent 3a3389b229649f9858687838cb83a8cb0ff3ef91 merged diff -r 3a3389b22964 -r 7396fd5619e7 php.rst --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/php.rst Wed Dec 21 23:42:11 2011 +0200 @@ -0,0 +1,19 @@ +.. -*- coding: utf-8; -*- + +====== + PHP. +====== + +Debugging. +========== + +Pretty print variable:: + + print_r($var); + +Print backtrace:: + + debug_print_backtrace(); + + * http://php.net/manual/ru/function.print-r.php + * http://www.php.net/manual/en/function.debug-print-backtrace.php diff -r 3a3389b22964 -r 7396fd5619e7 solaris.rst --- a/solaris.rst Tue Dec 20 20:51:13 2011 +0200 +++ b/solaris.rst Wed Dec 21 23:42:11 2011 +0200 @@ -8,3 +8,7 @@ Solaris http://sunfreeware.com/ Solaris Freeware Project + http://www.blastwave.org/ + The "Blastwave Software Stack" is a commercial software service + for Solaris x86 and Solaris Sparc users + diff -r 3a3389b22964 -r 7396fd5619e7 windows.rst --- a/windows.rst Tue Dec 20 20:51:13 2011 +0200 +++ b/windows.rst Wed Dec 21 23:42:11 2011 +0200 @@ -521,4 +521,16 @@ cmd# control userpasswords2 +Format drive. +============= +Replace with own disk letter:: + + cmd# format E: /q /fs:ntfs + +See: + + http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/format.mspx + Formats the disk in the specified volume to accept Windows + files. +