1 / 12

PHP Array

PHP Array. Bayu Priyambadha, S.Kom. Array. Array is collection of data that is saved in some place together and it is can accessed using index key 2 Kinds of Array : Array with numeric index Associative Array. Array With Numeric Index. Array with numeric index Example :

Download Presentation

PHP Array

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. PHP Array Bayu Priyambadha, S.Kom

  2. Array • Array is collection of data that is saved in some place together and it is can accessed using index key • 2 Kinds of Array : • Array with numeric index • Associative Array

  3. Array With Numeric Index • Array with numeric index • Example : $suku = array(”Jawa”,”Sunda”,”Batak”,”Minang”); Or $suku[0] = ”Jawa”; $suku[1] = ”Sunda”; $suku[2] = ”Batak”; $suku[3] = ”Minang”;

  4. Associative Array • Array with index based on current name • Example : $suku = array(“satu” => “Jawa”, “dua” => “Sunda”, “tiga” => “Batak”, “emapat” => “Minang”);

  5. Array Manipulation • Adding Array (Push) • Merge Array • Deletion Array • Sorting Array

  6. Adding Array (Push) • Used to adding array data to existing array • PHP function : array_push() • Example : $suku = array(”Jawa”,”Sunda”); array_push($suku, ”Batak”, ”Minang”);

  7. Merge Array • Used to merge two array • PHP function : array_merge(); • Example : $satu = array(”Jawa”, ”Sunda”); $dua = array(”Batak”, ”Minang”); $gabung = array_merge($satu, $dua);

  8. Deletion Array (1) • Used to delete data in array • PHP function : array_shift(); array_pop(); • Example : $suku = array(”Jawa”, “Sunda”, “Batak”); $suku_baru = array_shift($suku); $suku = array(”Jawa”, “Sunda”, “Batak”); $suku_baru = array_pop($suku);

  9. Deletion Array (2) • How to delete the middle data? • PHP function : array_ splice(); • Example : $arr = array("zero","one", "two", "three", "four", "five", "six"); array_splice($arr,3,2);

  10. Sorting Array (1) • Used to sort array data • PHP function : sort(); • Example : $nama = array(”abi”,”bobo”,”cica”,”ani”); sort($nama);

  11. Sorting Array (2) • asort() • ksort() • rsort() • arsort() • krsort()

  12. Questions?

More Related