Wisdom Materials
Home
About Us
Our Clients
Careers
Services
Education
Jobs
News
Business
Health
Astrology
Entertainment
RealEstate
Devotion
Contact Us
PHP
/ PHP Arrays
It is a collection of elements.
Program
Output
// program to calculate the Length of an Array. "; echo "Arrray Elements Count: "; echo count($Nos); ?>
Arrray Elements Count: 3
// program to Sorting Arrays "; sort($Nos); echo "Nos " . $Nos[0] . ", " . $Nos[1] . " and " . $Nos[2] . "."; ?>
Nos 2, 0 and 1.
Nos 0, 1 and 2.
// Sorting Arrays in Descending Order using rsort() method "; rsort($Nos); echo "Nos " . $Nos[0] . ", " . $Nos[1] . " and " . $Nos[2] . "."; ?>
Nos 2, 0 and 1.
Nos 0, 1 and 2.
// Sorting Arrays in Ascending Order using asort()method "; asort($Nos); echo "Nos " . $Nos[0] . ", " . $Nos[1] . " and " . $Nos[2] . "."; ?>
Nos 2, 0 and 1.
Nos 0, 1 and 2.
Home
Back