001- Simple variables: 002- int(123) 003- string(3) "foo" 004- string(3) "foo" 005- string(3) "foo" 001+ Usage: php 002+ php -[b|c|n|h|i|q|s|v|?] [] [args...] 003+ Run in LSAPI mode, only '-b', '-s' and '-c' are effective 004+ Run in Command Line Interpreter mode when parameters are specified 007- Arrays: 008- array(2) { 009- ["foo"]=> 010- int(123) 011- ["bar"]=> 012- string(3) "foo" 013- } 014- id(foo) 015- id(foo) 016- id(bar) 017- array(2) { 018- ["foo"]=> 019- int(123) 020- ["bar"]=> 021- string(3) "foo" 022- } 006+ -b | Bind Path for external LSAPI Server mode 007+ -c | Look for php.ini file in this directory 008+ -n No php.ini file will be used 009+ -h This help 010+ -i PHP information 011+ -l Syntax check 012+ -q Quiet-mode. Suppress HTTP Header output. 013+ -s Display colour syntax highlighted source. 014+ -v Version number 015+ -? This help 024- Objects: 025- object(stdClass)#1 (2) { 026- ["foo"]=> 027- int(123) 028- ["bar"]=> 029- string(3) "foo" 030- } 031- id(foo) 032- id(foo) 033- id(bar) 034- object(stdClass)#2 (2) { 035- ["foo"]=> 036- int(123) 037- ["bar"]=> 038- string(3) "foo" 039- } 040- 041- Static props: 042- int(123) 043- string(3) "foo" 044- id(foo) 045- id(foo) 046- id(bar) 047- int(123) 048- string(3) "foo" 017+ args... Arguments passed to script.