Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
How To Get All the Keys Out of an Array
How To Get All the Keys Out of an Array? - PHP Script Tips - PHP Built-in Functions for Arrays
✍: FYIcenter.com
Function array_keys() returns a new array that contains all the keys of a given array. Here is a PHP script on how to use array_keys():
<?php $mixed = array(); $mixed["Zero"] = "PHP"; $mixed[1] = "Perl"; $mixed["Two"] = "Java"; $mixed["3"] = "C+"; $mixed[""] = "Basic"; $mixed[] = "Pascal"; $mixed[] = "FORTRAN"; $keys = array_keys($mixed); print("Keys of the input array:\n"); print_r($keys); ?>
This script will print:
Keys of the input array: Array ( [0] => Zero [1] => 1 [2] => Two [3] => 3 [4] => [5] => 4 [6] => 5 )
2007-04-21, 5081👍, 0💬
Popular Posts:
How can I enable session tracking for JSP pages if the browser has disabled cookies? We know that se...
What does AddressOf operator do in background ? The AddressOf operator creates a delegate object to ...
What is a fish bone diagram ? Dr. Kaoru Ishikawa, invented the fishbone diagram. Therefore, it can b...
.NET INTERVIEW QUESTIONS - What are types of compatibility in VB6? There are three possible project ...
Would I use print "$a dollars" or "{$a} dollars" to print out the amount of dollars in this example?...