Since the PHP 5.6 it's possible do define a constant array like this:
const MY_CONSTANT = array('fruit'=>'apple');
However I am not clear on how exactly I can access array elements that use either keys or indexes. PhpStorm complains about a syntax error when I try to do it like this:
self::MY_CONSTANT['fruit'];