<?php
class TestArrayConstant {
const myArray = array('one'=>1, 'two'=>2);
}
print_r(TestArrayConstant::myArray);
}
?>
This returns ''Fatal error: Arrays are not allowed in class constants in /path/to/ajh_test_const_array.php on line 5'';