What are PHP magic constants?
PHP magic constants?
Collapse
X
-
Tags: None
-
PHP magic constants are:
FILE__ – The full path and filename of the file.
DIR__ – The directory of the file.
FUNCTION__ – The function name.
CL***__ – The cl*** name.
METHOD__ – The cl*** method name. -
__FILE__ The full path and filename of the file.
__DIR__ The directory of the file.
__FUNCTION__ The function name.
__CL***__ The cl*** name.
__METHOD__ The cl*** method name.
__LINE__ The current line number of the file.
__NAMESPACE__ The name of the current namespaceComment
Comment