Questão 2 - 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 Questão 2.php

  1. <?php
  2. $semana=["Domingo", "Segunda-feira", "Terça-feira", "Quarta-feira", "Quinta-feira", "Sexta-feira", "Sábado"];
  3.  
  4. $numsemana=2;
  5.  
  6. if($numsemana>=1 && $numsemana<=7){
  7.     echo$semana[$numsemana-1];
  8. }
  9. else{
  10.     echo"Inválido";
  11. }
File Description
  • Questão 2
  • PHP Code
  • 26 Sep-2020
  • 231 Bytes
You can Share it: