×
Home About Us Products Services News Free Scripts Contact
news php scripts and software

PHP example - How to get all the keys of an PHP array?


PHP - How to get all the keys of an PHP array?

<?php

$arr=array(2=>"netart"),5=>"media";

array_keys($arr);  //will return array(2,5)

?>

Category: PHP

 
<< Go back