I was messing around with some code, and made this:
PHP Code:
<?php
class Php
{
private $left;
function __construct()
{
ob_start();
}
function __destruct()
{
$this->left = ob_get_contents();
ob_end_clean();
while(true)
{
$start = explode('{php}', $this->left, 2);
echo $start[0];
if(!isset($start[1]))
{
break;
}
$end = explode('{/php}', $start[1], 2);
if(!isset($end[1]))
{
exit('No closing tag {/php} found!');
}
eval($end[0]);
$this->left = $end[1];
}
}
}
$php = new Php();
?>
Include/require it on a page and you can use {php} {/php} tags 
Warning: it uses eval