I have a blade running SunOS 5.1 and PHP. There's a problem with it parsing PHP though, and once it hits a =>, such as setting up an array, it starts printing the source to the page.
Example source:
<?php
$tmpVar = 'just testing';
$tmpArray = array(
'test1' => 'rawr1',
'test2' => 'rawr2',
'test3' => 'rawr3'
);
echo "Testing<br/>";
?>
This would output:
'rawr1', 'test2' => 'rawr2', 'test3' => 'rawr3'); echo "Testing<br/>"; ?>