Skip to content

Instantly share code, notes, and snippets.

@Chemaclass
Created September 21, 2019 22:52
Show Gist options
  • Select an option

  • Save Chemaclass/560ddaca648d1cb9dd8521584ae6c731 to your computer and use it in GitHub Desktop.

Select an option

Save Chemaclass/560ddaca648d1cb9dd8521584ae6c731 to your computer and use it in GitHub Desktop.
Docu - Constant arrays using `define()`
<?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