Friday 13 April 2018

How to array use in a PhP?

  • Array is a collection Similar data,Basically array is use for group of value.
Example:-
<?php
$names=array(‘mark’,’john’,’bob’);
echo $names[1];
?>

OUTPUT:-
john

  • The another methods is-
Example:-
<?php
$names=array(‘Mark’,’John’,’Bob’);
$names[3]=’July’;                                  //This is use for add another value.
$names[4]=’Castor Classes’;                 //This is use for add another value.
print_r($names);                                   //Print all value on output screen.
?>

OUTPUT:-
Array ( [0] => Mark [1] => John [2] => Bob [3] => July [4] => Castor Classes )

Multidimensional Array in PhP

  • PHP multidimensional array is also known as array of arrays. It allows you to store tabular data in an array. PHP multidimensional array can be represented in the form of matrix which is represented by row * column.
Syntax:-
$emp = array
  (
  array(1,“sonoo”,400000),
  array(2,“john”,500000),
  array(3,“rahul”,300000)
  );
Example:-
<?php
/*
students
Name Age Weight
Mark 15 46
John 13 65
Tom 14 56
*/
$students=array(array(‘Name’=>’Mark’,’Age’=>15,’Weight’=>46),
array(‘Name’=>’John’,’Age’=>13,’Weight’=>65),
array(‘Name’=>’Tom’,’Age’=>14,’Weight’=>56));
echo $students[0][‘Name’].’ ‘;
echo $students[1][‘Age’].’ ‘;
echo $students[2][‘Weight’].'<br>’;
echo $students[0][‘Name’].’ ‘;
echo $students[1][‘Age’].’ ‘;
echo $students[2][‘Weight’].'<br>’;
echo $students[0][‘Name’].’ ‘;
echo $students[1][‘Age’].’ ‘;
echo $students[2][‘Weight’].'<br>’;
?>

OUTPUT:-
Mark 15 46
Mark 14 65
Mark 13 56

0 Comments:

Post a Comment

Popular Posts

Categories

AI (27) Android (24) AngularJS (1) Assembly Language (2) aws (17) Azure (7) BI (10) book (4) Books (112) C (77) C# (12) C++ (82) Course (60) Coursera (176) coursewra (1) Cybersecurity (22) data management (11) Data Science (85) Data Strucures (6) Deep Learning (9) Django (6) Downloads (3) edx (2) Engineering (14) Excel (13) Factorial (1) Finance (5) flutter (1) FPL (17) Google (18) Hadoop (3) HTML&CSS (46) IBM (25) IoT (1) IS (25) Java (92) Leet Code (4) Machine Learning (43) Meta (18) MICHIGAN (4) microsoft (3) Pandas (3) PHP (20) Projects (29) Python (719) Python Coding Challenge (155) Questions (2) R (70) React (6) Scripting (1) security (3) Selenium Webdriver (2) Software (17) SQL (40) UX Research (1) web application (8)

Followers

Person climbing a staircase. Learn Data Science from Scratch: online program with 21 courses