PHP Array.

Slides:



Advertisements
Similar presentations
» PHP arrays are lists of values stored in key-value pairs. » Uses of arrays: Many built-in PHP environment variables. Database functions use arrays.
Advertisements

An Array A sequence of elements of a particular type Each element in the array has an index which gives its position in the sequence An array is declared.
Pemrograman Web Dasar Pertemuan 12 PHP Array. Indexed arrays - Arrays with numeric index Associative arrays - Arrays with named keys Multidimensional.
NUMERIC ARRAYS DEBBI HAMNER CIT 336 TEACHING PRESENTATION.
Kirkwood Center for Continuing Education Introduction to PHP and MySQL By Fred McClurg, © Copyright 2010 All Rights Reserved. 1.
Outline o What is an array ? o Indexed array o Associative array o Multidimensional array.
Chapter 3 Array. Indexed Versus Associative Arrays There are two kinds of arrays in PHP: indexed and associative. The keys of an indexed array are integers,
INTERNET APPLICATION DEVELOPMENT For More visit:
The foreach LooptMyn1 The foreach Loop The foreach loop gives an easy way to iterate over arrays. foreach works only on arrays, and will issue an error.
Arrays IDIA Spring 2012 Bridget M. Blodgett.
PHP Arrays. Outline o What is array in PHP ? o Numeric array o Associative array o Multidimensional array.
NUMERIC ARRAYS IN PHP BY SKYLAR NEILSON. WHAT ARE NUMERIC ARRAYS? They are arrays with a numeric index and the values are stored and accessed in linear.
Week 7. Lecture 2 Functions, Arrays, PHP&MySQL. Function with More than one argument and a return statement For a function to return a value, the return.
PHP - Introduction Week 5 Dr. Ken Cosh Introducing PHP 1.
PHP Conditional Statements Conditional statements in PHP are used to perform different actions based on different conditions. Conditional Statements Very.
Array & Foreach อาร์เรย์และคำสั่งวนลูป. Content 1. Definition and Usage 2. Syntax 3. print_r() Statement 4. For and Foreach 5. Array Functions.
PHP Arrays By Justin Nelsen. What is an Array? - An array can store one or more values in a single variable name. -Each element in the array is assigned.
PHP Constructs Advance Database Management Systems Lab no.3.
Two –Dimensional Arrays Mrs. C. Furman September 18, 2008.
Outline if...else...elseif Statements Switch Loops Functions Arrays Forms.
Kirkwood Center for Continuing Education Introduction to PHP and MySQL By Fred McClurg, © Copyright 2015, Fred McClurg, All Rights.
CHAPTER 7 Introduction to PHP5 Part II อ. ยืนยง กันทะเนตร คณะเทคโนโลยีสารสนเทศและการสื่อสาร มหาวิทยาลัยพะเยา 1.
 In computer programming, a loop is a sequence of instruction s that is continually repeated until a certain condition is reached.  PHP Loops :  In.
 Variables can store data of different types, and different data types can do different things.  PHP supports the following data types:  String  Integer.
CS320n – Elements of Visual Programming Assignment Help Session.
 An array stores multiple values in one single variable.  Example: Output: I like Honda Civic, BMW and Toyota.
11 – Introduction to PHP(1) Informatics Department Parahyangan Catholic University.
PHP Tutorial. What is PHP PHP is a server scripting language, and a powerful tool for making dynamic and interactive Web pages.
1 Arrays and Variable Length Parameter List  The syntax to declare a variable length formal parameter (list) is: dataType... identifier.
PHP Condtions and Loops Prepared by Dr. Maher Abuhamdeh.
Very often when you write code, you want to perform different actions for different decisions. You can use conditional statements in your code to do this.
Arrays and Collections
Open Source Programming
Oleh: Ahmad Ramadhani, S.Kom
Arrays.
Chapter 6: Using Arrays.
Outline lecture Revise arrays Entering into an array
Functions A function is a block of code with a name. function functionName() { code to be executed; }
© 2016 Pearson Education, Ltd. All rights reserved.
Arrays in PHP are quite versatile
>> PHP: Arrays.
PHP Arrays Functions.
CHAPTER 5 SERVER SIDE SCRIPTING
Class06 Arrays MIS 3502 Jeremy Shafer Department of MIS
PHP Arrays By Justin Nelsen.
Foundations of Programming: Arrays
JavaScript: Functions.
8th Semester, Batch 2008 Department of Computer Science SSUET.
Web System & Technology
JavaScript Functions and Arrays
While Loops BIS1523 – Lecture 12.
Ch. 3. PHP (이 강의 내용의 대부분 예들은 w3schools. com/php/default
Arrays MIS 3502 Jeremy Shafer Department of MIS Fox School of Business
Introduction to Web programming
PHP Function.
Web Systems Development (CSC-215)
Control Structures: for & while Loops
JavaScript Arrays.
Chapter 7 Part 2 Edited by JJ Shepherd
HYPERTEXT PREPROCESSOR BY : UMA KAKKAR
Multidimensional array
Basics (Cont...).
PHP an introduction.
PHP Lecture 11 Kanida Sinmai
Just Basic Lessons Mr. Kalmes.
PHP-II.
Arrays & Loops.
Arrays & Loops.
LOOPING STRUCTURE Chapter - 7 Padasalai
Contact PSK Technologies Pvt. Ltd IT Company Address - Plot No-780, Near Durga Temple, Katol Road Chaoni, Nagpur-13.
Presentation transcript:

PHP Array

Array An array stores multiple values in one single variable. Example: <?php $cars = array(“Honda Civic", "BMW", "Toyota"); echo "I like " . $cars[0] . ", " . $cars[1] . " and " . $cars[2] . "."; ?> Output: I like Honda Civic, BMW and Toyota

What is an Array? An array is a special variable, which can hold more than one value at a time. If you have a list of items (a list of car names, for example), storing the cars in single variables could look like this: $cars1 = “Honda Civic"; $cars2 = "BMW"; $cars3 = "Toyota";

Continued.. An array can hold many values under a single name, and you can access the values by referring to an index number. Create an Array in PHP In PHP, the array() function is used to create an array: array();

Types of Array In PHP, there are three types of arrays: Indexed arrays - Arrays with a numeric index Associative arrays - Arrays with named keys Multidimensional arrays - Arrays containing one or more arrays

PHP Indexed Arrays There are two ways to create indexed arrays: The index can be assigned automatically (index always starts at 0), like this: $cars = array("Volvo", "BMW", "Toyota"); $cars[0] = "Volvo"; $cars[1] = "BMW"; $cars[2] = "Toyota";

Continued.. The following example creates an indexed array named $cars, assigns three elements to it, and then prints a text containing the array values: <?php $cars = array(“Swift", "BMW", "Toyota"); echo "I like " . $cars[0] . ", " . $cars[1] . " and " . $cars[2] . "."; ?> I like Swift, BMW and Toyota.

Get The Length of an Array The count() Function: The count() function is used to return the length (the number of elements) of an array: <?php $cars = array("Volvo", "BMW", "Toyota"); echo count($cars); ?> Output: 3

Loop Through an Indexed Array To loop through and print all the values of an indexed array, you could use a for loop, like this: <?php $cars = array(“Swift", "BMW", "Toyota"); $arrlength = count($cars); for($x = 0; $x < $arrlength; $x++) { echo $cars[$x]; echo "<br>"; } ?>

Continued.. Output: Swift BMW Toyota

PHP Associative Arrays Associative arrays are arrays that use named keys that you assign to them. There are two ways to create an associative array: $age = array("Peter"=>"35", "Ben"=>"37", "Joe"=>"43"); OR $age['Peter'] = "35"; $age['Ben'] = "37"; $age['Joe'] = "43";

Continued… The named keys can then be used in a script: Example: <?php $age = array("Peter"=>"35", "Ben"=>"37", "Joe"=>"43"); echo "Peter is " . $age['Peter'] . " years old."; ?> Output: Peter is 35 years old.

Loop Through an Associative Array To loop through and print all the values of an associative array, you could use a foreach loop, like this: For every loop iteration, the value of the current array element is assigned to $value and the array pointer is moved by one, until it reaches the last array element. <?php $age = array("Peter"=>"35", "Ben"=>"37", "Joe"=>"43"); foreach($age as $x => $x_value) { echo "Key=" . $x . ", Value=" . $x_value; echo "<br>"; } ?>

Continued.. Output: Key=Peter, Value=35 Key=Ben, Value=37 Key=Joe, Value=43

Multidimensional Arrays A multidimensional array is an array containing one or more arrays. PHP understands multidimensional arrays that are two, three, four, five, or more levels deep.

Continued.. The dimension of an array indicates the number of indices you need to select an element. For a two dimensional array you need two indices to select an element For a three dimensional array you need three indices to select an element

Continued.. Name Stock Sold Volvo 22 18 BMW 15 13 Swift 5 2 Land Rover 17

Continued.. $cars = array ( array("Volvo",22,18), array("BMW",15,13), array("Swift",5,2), array("Land Rover",17,15) );