I am not interested in the values in the arrays, how can I discard them?
<?php
$values = array(10=>"I","Don't","Care","About","Values");
print_r($values);
$whatvalues = array_keys($values);
print_r($whatvalues);
?>
Here is the resultant output from this:
Array
(
[10] => I
[11] => Don't
[12] => Care
[13] => About
[14] => Values
)
Array
(
[0] => 10
[1] => 11
[2] => 12
[3] => 13
[4] => 14
)
We can see that the values have been discarded and we now have an array containing the keys as the values.
Comment on this Question and Answer >>>
ASK A QUESTION
More arrays PHP Questions
im getting a Resource id #5 $rs_comp = mysql_query("select * from company where autoID='$row_settings[compid]'");HOW CAN I DELETE ALL THE ELEMENT OF THE ARRAY
How do I turn an array into a string?
how a values entered in an array from keyboard?
How do I sort alphanumeric array data correctly?
