001- Pass a function call that returns a value: 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 003- Notice: Only variables should be passed by reference in %s on line 44 004- string(8) "original" 005- string(8) "original" 006- Pass a function call that returns a reference: 007- string(8) "original" 008- string(7) "changed" 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 010- Pass a static method call that returns a value: 011- 012- Notice: Only variables should be passed by reference in %s on line 55 013- string(8) "original" 014- string(8) "original" 015- Pass a static method call that returns a reference: 016- string(8) "original" 017- string(7) "changed" 018- 019- Pass a method call that returns a value: 020- 021- Notice: Only variables should be passed by reference in %s on line 67 022- string(8) "original" 023- string(8) "original" 024- Pass a method call that returns a reference: 025- string(8) "original" 026- string(7) "changed" 017+ args... Arguments passed to script.