1. Computing

Discuss in my forum

Array () PHP Function

By , About.com Guide

Definition: Returns an array of the parameters. The parameters can be given an index with the => operator.
Examples:
 <?php 
 $months = array(1 => 'January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'); 
 print_r($months);
 ?> 
  1. About.com
  2. Computing
  3. PHP / MySQL
  4. PHP Functions
  5. PHP Array - Script Array - Very Large Array

©2013 About.com. All rights reserved.