Home
PHP
Chart
Class
Components
Cookie Session
Data Structure
Data Type
Date
Design Patterns
Development
DNS
Email
File Directory
Form
Functions
Graphics Image
HTML
Language Basics
Login Authentication
Math
MySQL Database
Network
Operator
PDF
Reflection
Statement
String
Utility Function
Web Services SOAP WSDL
XML
Creates an array with keys 0 through 3 : array « Data Structure « PHP
PHP
Data Structure
array
Creates an array with keys 0 through 3
<?php $myarray = array(
'a'
,
'b'
,
'c'
,
'd'
); ?>
Related examples in the same category
1.
A list of numbers using an array variable
2.
Accessing Array Elements
3.
Arrays
4.
Converting an object to an array will convert properties to elements of the resulting array
5.
Create an array
6.
Creating arrays with array()
7.
Creating multidimensional arrays with array()
8.
Creating numeric arrays with array()
9.
Setting up an associative array is similarly easy
10.
Demonstrate the Difference Between the Array '+' Operator and a True Array Union
11.
Using the array function to create an array of weekdays
12.
Using the array() Function
13.
Queue Handling Library
14.
Stack Handling Library