문제

index.php:

<!-- language: lang-php -->

require('v/Mustache/Autoloader.php');

Mustache_Autoloader::register();

$m = new Mustache_Engine(array(
    'loader' => new Mustache_Loader_FilesystemLoader(dirname(__FILE__) . '/v'),
));

// loads template from `v/sign_in.mustache` and renders it.
$m->render('sign_in', array('planet' => 'world'));

?>

v/sign_in.mustache:

<h1>Where in the {{planet}} is Carmen San Diego?</h1>

When I load index.php, I see a big blank screen with no errors.

도움이 되었습니까?

해결책

echo $m->render('sign_in', array('planet' => 'world'));
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top