daugiau - PHP Online

Form of PHP Sandbox

Enter Your PHP code here for testing/debugging in the Online PHP Sandbox. As in the usual PHP files, you can also add HTML, but do not forget to add the tag <?php in the places where the PHP script should be executed.



Your result can be seen below.

Result of php executing





Full code of daugiau.php

  1. <?php
  2. $masyvas = ['aaa', 4, 666, 88 => '88-tas'];
  3. echo count($masyvas);
  4.  
  5. echo '<hr>';
  6.  
  7. // tada pridedam kzka
  8. $masyvas[] = 'op';
  9. echo count($masyvas);
  10.  
  11. echo '<hr><pre>';
  12.  
  13. print_r($masyvas);
  14.  
  15. echo '</pre>';
  16.  
File Description
  • daugiau
  • PHP Code
  • 15 Jan-2020
  • 205 Bytes
You can Share it: