Created
September 21, 2019 22:52
-
-
Save Chemaclass/560ddaca648d1cb9dd8521584ae6c731 to your computer and use it in GitHub Desktop.
Docu - Constant arrays using `define()`
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| define('ANIMALS', [ | |
| 'dog', | |
| 'cat', | |
| 'bird' | |
| ]); | |
| echo ANIMALS[1]; // outputs "cat" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment