fork(3) download
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  5. <body>
  6. <table>
  7. <tr>
  8. <td>
  9. <img src='1.jpg'>
  10. </td>
  11. </tr>
  12. </table>
  13. <?php
  14. //onyx
  15. //W4.2 Сделай рулетку, то есть генерируется 6-значный номер поста, и, в
  16. //зависимости от последней цифры, что-то пишется (что, придумай сам). Подсказка:
  17. //чтобы найти последнюю цифру числа, возьми остаток от деления на 10: $lastDigit
  18. // = $number % 10
  19. $Roll=mt_rand(100000 , 999999);
  20. $lastDigit = $Roll % 10;
  21. if($lastDigit==1){
  22. echo "Да";
  23. } elseif ($lastDigit==2) {
  24. echo "Нет";
  25. } elseif ($lastDigit==3) {
  26. echo "Это не важно";
  27. }elseif ($lastDigit==4) {
  28. echo "Спок, бро";
  29. }elseif ($lastDigit==5) {
  30. echo "Толсто";
  31. }elseif ($lastDigit==6) {
  32. echo "Да, хотя зря";
  33. }elseif ($lastDigit==7) {
  34. echo "Никогда";
  35. }elseif ($lastDigit==8) {
  36. echo "100%";
  37. }elseif ($lastDigit==9) {
  38. echo "1 из 100";
  39. }elseif ($lastDigit==0) {
  40. echo "Ещё разок";
  41. }
  42. ?>
  43. </body></html>
Success #stdin #stdout 0.02s 52432KB
stdin
Standard input is empty
stdout
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" /> 
<body>
	<table>
		<tr>
			<td>
				<img src='1.jpg'>
			</td>
		</tr>
	</table>
Толсто</body></html>