Array in PHP ~ PinoySourceCode

Friday, April 25, 2014

Array in PHP

Suppose we want to store 100 data item. So we need 100 different variable. So this is very typical work for programmer to manage 100 different variable.To overcome this problem we create a special type variable known as array.

array is a special type of variable that store one more values in one single variable. And each element in the array has its own index.

In PHP, there are three kind of arrays:
Numeric array - An array with a numeric index starting 0,1 etc.
Associative array - An array with a string index you can start like sun,mon,tue etc.

Multidimensional array - An array containing one or more arrays

1. we can create an array by array function.

<?php

$data=array("Sun","Mon","Tue","Wed");

?>

2. we can create each array element directly.

<?php

$data[0]="Sun";
$data[1]="Mon";
$data[2]="Tue";
$data[3]="Sun";

?>

A numeric array stores each array element with a numeric index.
In the following example the index are automatically assigned (the index starts at 0):

<?php

$data=array("Sun","Mon","Tue","Wed");

for($i=0;$i<4;$i++)
{
echo $data[$i]."  ";
}
?>
Output:

Sun  Mon  Tue  Web

Related Posts:

  • What is PHP? What is PHP?PHP is basically use for web developing dynamic website.Example of dynamic website are facebook.com,google.com etc.About Web DevelopmentW… Read More
  • HTML Form tag When creating textbox. labels,textarea , radio button etc. So this necessary to send these control value to the server.code:<form name="formanme" … Read More
  • PHP Loop Loop execute some statement many times till the condition is fullfill. There are three type or loops. these loops do same work execute statement man… Read More
  • If else statement in php if statement is use to check condition if condition is true then body of your code will be  execute.Syntaxif (condition){Code body}Exercise 1:&l… Read More
  • Array in PHP Suppose we want to store 100 data item. So we need 100 different variable. So this is very typical work for programmer to manage 100 different variab… Read More

0 (mga) komento:

Post a Comment

Get updates

Twitter Facebook Google Plus LinkedIn RSS Feed Email

Get Free Updates in Your Email


Enter your email address:

Popular Posts

A visitor from Ashburn viewed 'PinoySourceCode' 1 min ago
A visitor from Nairobi viewed 'PinoySourceCode' 9 hrs 54 mins ago
A visitor from Laval viewed 'PinoySourceCode' 14 hrs 23 mins ago
A visitor from Kigali viewed 'PinoySourceCode' 14 hrs 24 mins ago
A visitor from St petersburg viewed 'PinoySourceCode' 1 day 3 hrs ago
A visitor from Hamadan viewed 'PinoySourceCode' 1 day 3 hrs ago
A visitor from California viewed 'PinoySourceCode' 1 day 3 hrs ago
A visitor from Ashburn viewed 'PinoySourceCode' 1 day 3 hrs ago
A visitor from Toliara viewed 'PinoySourceCode' 1 day 22 hrs ago
A visitor from Ashburn viewed 'PinoySourceCode' 2 days 23 hrs ago