Your IP address is: 47.128.40.149

Constant arrays using define()

Constant arrays using define()

Array constants can now be defined with define(). In PHP 5.6, they could only be defined with const.

<?php
define('ANIMALS', [    'dog',
'cat',
'bird']);
echo ANIMALS[1]; // outputs “cat”?>