I'm trying the Zephir compiler out. Is supported "include" statement ?
my Zephir code is..
namespace Dumy;
final class Mage{
public static function renderHtml(){
include("/var/www/magento/include/b.php");
}
}
but, it doesn't work.
$ zephir compile
Warning: Function "include" does not exist at compile time in /var/www/magento/temp/dumy/dumy/mage.zep on 5 [nonexistant-function]
thanks.