Question: By what name will you call these is_float,is_array,is_integer etc ?
A
B
C
D
Type identifier functions
B
Data type
C
Compound data type
D
Functions type
Note: Not available
$customers = array(); $customers[] = array("Jason Gilmore", "jason@example.com", "614-999-9999"); $customers[] = array("Jesse James", "jesse@example.net", "818-999-9999"); $customers[] = array("Donald Duck", "donald@example.org", "212-999-9999"); foreach ($customers AS $customer) { vprintf("<p>Name: %s<br />E-mail: %s<br />Phone: %s</p>", $customer); }