示例#1
0
<?php

include "../brainfuck.php";

$interpreter = new Brainfuck();
$interpreter->setSource("+[>,]<-[+.<-]");
$interpreter->setInput("Was it a car or a cat I saw?");

echo $interpreter->execute()->getOutput();
?>
示例#2
0
  ]
 
  >++++[<++++++++>-]<.[-]
 
  ===================================================================
  =========================== END FOR ===============================
  ===================================================================


  >>>>>>>
 ]
 <<<<<<<<



 >[-]<
  [-]
 <<-
]
 
======LF========
 
++++++++++.[-]
@

");
$interpreter->setInput("10" . chr(10));

echo $interpreter->execute()->getOutput();

?>
示例#3
0
<?php

include "../brainfuck.php";

$interpreter = new Brainfuck();
$interpreter->setSource(">+[>,]<[<]>>[.>]");
$interpreter->setInput("Hi, how are you?");

echo $interpreter->execute()->getOutput();

?>