SlideShare a Scribd company logo
Associative
Arrays & Sorting
Associative Arrays
 Associative arrays are arrays that use
named keys that you assign to them.
 $age = array("Peter"=>"35", "Ben"=>"37",
"Joe"=>"43");
 Loop through this array to output each
person’s age.
Sorting
 In this chapter, we will go through the following
PHP array sort functions:
 sort() - sort arrays in ascending order
 rsort() - sort arrays in descending order
 asort() - sort associative arrays in ascending order,
according to the value
 ksort() - sort associative arrays in ascending order,
according to the key
 arsort() - sort associative arrays in descending
order, according to the value
 krsort() - sort associative arrays in descending
order, according to the key

More Related Content

PDF
PHP 101
PPT
PHP complete reference with database concepts for beginners
PPTX
PHP Functions & Arrays
PPT
PPT
Class 5 - PHP Strings
PPTX
Multimedia.pptx
PPTX
Compression techniques for sound
PPTX
Lesson 21: Compression techniques for images
PHP 101
PHP complete reference with database concepts for beginners
PHP Functions & Arrays
Class 5 - PHP Strings
Multimedia.pptx
Compression techniques for sound
Lesson 21: Compression techniques for images

More from Suraj Motee (16)

PPTX
Lesson 20: Principles of data compression
PPTX
Lesson 18- Video & File extension
PPTX
Lesson 17- Representing text
PPTX
Lesson 16- Vector Images
PDF
Cambridge O-Level Computer Science-2210
PDF
Functions Worksheet
PPTX
Pure Mathematics 1- Functions
PPTX
While Loops in PHP
PPTX
Functions in PHP
PPTX
For loops in PHP
PPTX
Operators
PPTX
String Manipulation in PHP
PPTX
Echo and print in PHP
PPTX
Introduction to php
PPTX
Data types
PPTX
Variables
Lesson 20: Principles of data compression
Lesson 18- Video & File extension
Lesson 17- Representing text
Lesson 16- Vector Images
Cambridge O-Level Computer Science-2210
Functions Worksheet
Pure Mathematics 1- Functions
While Loops in PHP
Functions in PHP
For loops in PHP
Operators
String Manipulation in PHP
Echo and print in PHP
Introduction to php
Data types
Variables
Ad

Recently uploaded (20)

PDF
Black Hat USA 2025 - Micro ICS Summit - ICS/OT Threat Landscape
PPTX
Pharmacology of Heart Failure /Pharmacotherapy of CHF
PDF
O5-L3 Freight Transport Ops (International) V1.pdf
PDF
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
PDF
Basic Mud Logging Guide for educational purpose
PDF
Sports Quiz easy sports quiz sports quiz
PDF
Complications of Minimal Access Surgery at WLH
PPTX
Microbial diseases, their pathogenesis and prophylaxis
PDF
VCE English Exam - Section C Student Revision Booklet
PPTX
Pharma ospi slides which help in ospi learning
PDF
01-Introduction-to-Information-Management.pdf
PDF
Anesthesia in Laparoscopic Surgery in India
PPTX
Lesson notes of climatology university.
PPTX
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
PPTX
GDM (1) (1).pptx small presentation for students
PDF
TR - Agricultural Crops Production NC III.pdf
PPTX
Institutional Correction lecture only . . .
PDF
O7-L3 Supply Chain Operations - ICLT Program
PDF
3rd Neelam Sanjeevareddy Memorial Lecture.pdf
PDF
Pre independence Education in Inndia.pdf
Black Hat USA 2025 - Micro ICS Summit - ICS/OT Threat Landscape
Pharmacology of Heart Failure /Pharmacotherapy of CHF
O5-L3 Freight Transport Ops (International) V1.pdf
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
Basic Mud Logging Guide for educational purpose
Sports Quiz easy sports quiz sports quiz
Complications of Minimal Access Surgery at WLH
Microbial diseases, their pathogenesis and prophylaxis
VCE English Exam - Section C Student Revision Booklet
Pharma ospi slides which help in ospi learning
01-Introduction-to-Information-Management.pdf
Anesthesia in Laparoscopic Surgery in India
Lesson notes of climatology university.
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
GDM (1) (1).pptx small presentation for students
TR - Agricultural Crops Production NC III.pdf
Institutional Correction lecture only . . .
O7-L3 Supply Chain Operations - ICLT Program
3rd Neelam Sanjeevareddy Memorial Lecture.pdf
Pre independence Education in Inndia.pdf
Ad

Associative arrays in PHP

  • 2. Associative Arrays  Associative arrays are arrays that use named keys that you assign to them.  $age = array("Peter"=>"35", "Ben"=>"37", "Joe"=>"43");  Loop through this array to output each person’s age.
  • 4.  In this chapter, we will go through the following PHP array sort functions:  sort() - sort arrays in ascending order  rsort() - sort arrays in descending order  asort() - sort associative arrays in ascending order, according to the value  ksort() - sort associative arrays in ascending order, according to the key  arsort() - sort associative arrays in descending order, according to the value  krsort() - sort associative arrays in descending order, according to the key