I remember seeing somewhere using %D or something similar to declare constant where the value of %D is supplied while calling the constant.
define("EVENT_DATE","The event date is %D");
Any information on this, how does it work please?
|
|
|
Check out Example:
The above will display:
If all you want to do is print, and you're absolutely sure that the string does not need As Mel points out while downvoting, |
||||
|
|
You can declare constants for your program in php:
This will echo 4. |
|||
|
|
|
The specific %D is used in strftime:
Gives: |
|||
|