document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?php
  2. $fruits = "Apple";
  3. $fruits1 = array('Orange','Dragonfruit','Grape');
  4. array_push($fruits1,$fruits);
  5. print_r($fruits1); exit();
  6. ?>
  7.  
  8.  
  9. #HASIL RUNNING
  10. Array (
  11. [0] => Orange
  12. [1] => Dragonfruit
  13. [2] => Grape
  14. [3] => Apple
  15. )
');