
---- EXPECTED OUTPUT
--- testing: '0' ---
int(1)
--- testing: '65' ---
int(66)
--- testing: '-44' ---
int(-43)
--- testing: '1.2' ---
float(2.2)
--- testing: '-7.7' ---
float(-6.7)
--- testing: 'abc' ---
string(3) "abd"
--- testing: '123abc' ---
string(6) "123abd"
--- testing: '123e5' ---
float(12300001)
--- testing: '123e5xyz' ---
string(8) "123e5xza"
--- testing: ' 123abc' ---

Deprecated: Increment on non-alphanumeric string is deprecated in %s on line %d
string(7) " 123abd"
--- testing: '123 abc' ---

Deprecated: Increment on non-alphanumeric string is deprecated in %s on line %d
string(7) "123 abd"
--- testing: '123abc ' ---

Deprecated: Increment on non-alphanumeric string is deprecated in %s on line %d
string(7) "123abc "
--- testing: '3.4a' ---

Deprecated: Increment on non-alphanumeric string is deprecated in %s on line %d
string(4) "3.4b"
--- testing: 'a5.9' ---

Deprecated: Increment on non-alphanumeric string is deprecated in %s on line %d
string(4) "a5.0"
---- ACTUAL OUTPUT
Usage: php
      php -[b|c|n|h|i|q|s|v|?] [<file>] [args...]
  Run in LSAPI mode, only '-b', '-s' and '-c' are effective
  Run in Command Line Interpreter mode when parameters are specified

  -b <address:port>|<port> Bind Path for external LSAPI Server mode
  -c <path>|<file> Look for php.ini file in this directory
  -n    No php.ini file will be used
  -h    This help
  -i    PHP information
  -l    Syntax check
  -q    Quiet-mode.  Suppress HTTP Header output.
  -s    Display colour syntax highlighted source.
  -v    Version number
  -?    This help

  args...    Arguments passed to script.
---- FAILED
