| Escape
Sequence |
Description |
|
__FILE__ |
Returns the filename of the script being processed. |
|
__LINE__ |
Returns the number of the line being processed in
the script. |
|
PHP_VERSION |
Returns the version number of PHP being used. |
|
PHP_OS |
Returns the name of the operation system running
PHP.
|
|
TRUE |
Stores a value of true |
|
FALSE |
Stores a value of false. related to parsing.
|
|
E_ERROR |
Indicates a fatal error that is not related to
parsing.
|
|
E_WARNING |
Indicates that an error has occurred, but PHP will
continue processing the script.
|
|
E_PARSE |
Indicates a fatal parsing error caused by invalid
syntax in the script.
|
|
E_NOTICE |
Indicates that an error may have occurred, but PHP
will continue processing the script.
|
|
E_ALL |
Represents all the E_* constants. If used with the
error_reporting function, all problems noticed by PHP will be reported.
NULL Represents no value. |