Source Code:
(back to article)
<?php $fruits = array("a" => "apple", "b" => "banana", "c" => "cherry"); $keys = array_keys($fruits); print_r($keys); ?>
Result:
Report an issue