php test araba - 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 php test araba.php

  1. <?php
  2.  
  3. $array = array(
  4.                 array(
  5.                         "plaka_no" => "35 AA 001",
  6.                         "model" => "Renault")
  7.         , array(
  8.                 "plaka_no" => "35 AA 002",
  9.                 "model" => "Clio")
  10. );
  11.  
  12. function in_array_r($aranan, $dizi) {
  13.     foreach ($dizi as $item) {
  14.         if (($item == $aranan) || (is_array($item) && in_array_r($aranan, $item))) {
  15.             return true;
  16.         }
  17.     }
  18.  
  19.     return false;
  20. }
  21.  
  22. $plakam = "35 AA 001";
  23.  
  24.  
  25. echo in_array_r($plakam, $array) ? 'dizide' : 'dizide degil';
  26. ?>
File Description
  • php test araba
  • PHP Code
  • 18 Feb-2020
  • 482 Bytes
You can Share it: