PHP Magic Constants
Сообщение 2024-05-17 07:40:16
0
2Кб
PHP Predefined Constants
PHP has nine predefined constants that change value depending on where they are used, and therefor they are called "magic constants".
These magic constants are written with a double underscore at the start and the end, except for the ClassName::class constant.
Magic Constants
Here are the magic constants, with descriptions and examples:
Constant | Description | |
---|---|---|
__CLASS__ | If used inside a class, the class name is returned. | Try it » |
__DIR__ | The directory of the file. | Try it » |
__FILE__ | The file name including the full path. | Try it » |
__FUNCTION__ | If inside a function, the function name is returned. | Try it » |
__LINE__ | The current line number. | Try it » |
__METHOD__ | If used inside a function that belongs to a class, both class and function name is returned. | Try it » |
__NAMESPACE__ | If used inside a namespace, the name of the namespace is returned. | Try it » |
__TRAIT__ | If used inside a trait, the trait name is returned. | Try it » |
ClassName::class | Returns the name of the specified class and the name of the namespace, if any. | Try it » |
Note:
The magic constants are case-insensitive, meaning __LINE__
returns the same as __line__
.
Поиск
Категории
- Art
- Causes
- Crafts
- Dance
- Drinks
- Film
- Fitness
- Food
- Игры
- Gardening
- Health
- Главная
- Literature
- Music
- Networking
- Другое
- Party
- Religion
- Shopping
- Sports
- Theater
- Wellness
Больше
PHP Casting
Sometimes you need to change a variable from one data type into another, and sometimes you want a...
PHP Strings
A string is a sequence of characters, like "Hello world!".
Strings
Strings in PHP are...
PHP Delete Array Items
Remove Array Item
To remove an existing item from an array, you can use...
PHP Break
The break statement can be used to jump out of different kind of loops.
Break in For...
PHP - Slicing Strings
Slicing
You can return a range of characters by using the substr() function.
Specify...