Tools, FAQ, Tutorials:
Creating an Array in PHP
How To Create an Array in PHP?
✍: FYIcenter.com
You can create an array using the array() constructor. When calling array(), you can also initialize the array with pairs of keys and values. Here is a PHP script on how to use array():
<?php print("Empty array:\n"); $emptyArray = array(); print_r($emptyArray); print("\n"); print("Array with default keys:\n"); $indexedArray = array("PHP", "Perl", "Java"); print_r($indexedArray); print("\n"); print("Array with specified keys:\n"); $mappedArray = array("Zero"=>"PHP", "One"=>"Perl", "Two"=>"Java"); print_r($mappedArray); print("\n"); ?>
This script will print:
Empty array: Array ( ) Array with default keys: Array ( [0] => PHP [1] => Perl [2] => Java ) Array with specified keys: Array ( [Zero] => PHP [One] => Perl [Two] => Java )
⇒ Testing If a Variable Is an Array in PHP
2016-10-15, 1951🔥, 0💬
Popular Posts:
How To Create an Array with a Sequence of Integers or Characters in PHP? The quickest way to create ...
What are "*..." and "**..." Wildcard Parameters in Function Definitions? If you want to define a fun...
How to troubleshoot the Orderer peer? The Docker container terminated by itself. You can follow this...
How To Change Text Fonts for Some Parts of a Paragraph? If you want to change text fonts or colors f...
How to decode the id_token value received from Google OpenID Connect authentication response? Accord...