Advertisement
Guest User

Untitled

a guest
Feb 25th, 2020
431
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.43 KB | None | 0 0
  1. <?php
  2.  
  3.     $apple = array(0xFEEDFACE);
  4.  
  5.     $pear = array($apple);
  6.  
  7.     $apple[] = $pear;
  8.  
  9.     $pear[] = $apple;
  10.  
  11.     foreach ($apple as $key => $pear) {
  12.         if ($apple[$key] == $pear && $pear[$key] == $apple) {
  13.             foreach ($pear as $key => $apple) {
  14.                 if ($apple[$key] == $pear && $apple[$key] == $pear) {
  15.                     echo "Loop";
  16.                 }
  17.             }
  18.         }
  19.     }
  20.  
  21. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement