Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

php constant array

<?php
    const ANIMALS = array('dog', 'cat', 'ant');
    define('ANIMALS', array('dog', 'cat', 'ant'));
?>
 
PREVIOUS NEXT
Tagged: #php #constant #array
ADD COMMENT
Topic
Name
5+4 =