opsftw

Teeny Tiny BF Interpreter

Nov 27th, 2019
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.24 KB | None | 0 0
  1. <?php
  2. //BrainF*ck code goes here
  3. $bf='';
  4.  
  5. //Interprets the code
  6. $p=0;while($i<strlen($bf)){
  7.     $c.=['>'=>'$p++;','<'=>'$p--;','+'=>'$b[$p]++;','-'=>'$b[$p]--;','['=>'while($b[$p]){',']'=>'}','.'=>'echo chr($b[$p]);'][$bf[$i++]];
  8. }
  9. eval($c);
  10. ?>
Advertisement
Add Comment
Please, Sign In to add comment