11 - 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 11.php

  1.  
  2. <?php
  3. echo(min(4, 6, 2, -5, -7, 20, 34, -44, 0)."<br>");
  4. echo(round(86.6)."<br>");
  5. echo(round(87.9)."<br>");
  6. echo(round(64.8)."<br>");
  7. echo(round(99.5)."<br>");
  8. echo(sqrt(8)."<br>");
  9. echo(sqrt(128)."<br>");
  10. echo(sqrt(254)."<br>");
  11. echo(sqrt(18)."<br>");
  12.  
  13. ?>
  14.  
File Description
  • 11
  • PHP Code
  • 24 Feb-2021
  • 259 Bytes
You can Share it: