Suppose I have the following array
$options = array(
PDO::ATTR_PERSISTENT => true,
PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION
);
When I do var_dump($options)
array(2) { [12]=> bool(true) [3]=> int(2) }
However I want the predefined constant to display like PDO::ATTR_PERSISTENT
not as 12