Login
Remember
Register
Ask a Question
What are the ways to define a constant in PHP?
0
votes
asked
Jun 5, 2020
in
PHP
by
Robindeniel
What are the ways to define a constant in PHP?
#php-define-constant
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jun 5, 2020
by
SakshiSharma
PHP constants are name or identifier that can't be changed during execution of the script. PHP constants are defined in two ways:
Using define() function
Using const() function
...