Computer Science, asked by anushkaburagohain8, 5 days ago

3. How is a constant defined in PHP?​

Answers

Answered by anujaryanmdb
1

Answer:

A constant is an identifier (name) for a simple value. The value cannot be changed during the script. A valid constant name starts with a letter or underscore (no $ sign before the constant name). Note: Unlike variables, constants are automatically global across the entire script.

Answered by poorvaverma681
0

Explanation:

A constant is an identifier (name) for a simple value. The value cannot be changed during the script. A valid constant name starts with a letter or underscore (no $ sign before the constant name). Note: Unlike variables, constants are automatically global across the entire script.

Similar questions