本文整理汇总了PHP中Mustache_Engine::getEscape方法的典型用法代码示例。如果您正苦于以下问题:PHP Mustache_Engine::getEscape方法的具体用法?PHP Mustache_Engine::getEscape怎么用?PHP Mustache_Engine::getEscape使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Mustache_Engine
的用法示例。
在下文中一共展示了Mustache_Engine::getEscape方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testConstructor
public function testConstructor()
{
$loader = new Mustache_Loader_StringLoader();
$partialsLoader = new Mustache_Loader_ArrayLoader();
$mustache = new Mustache_Engine(array('template_class_prefix' => '__whot__', 'cache' => self::$tempDir, 'loader' => $loader, 'partials_loader' => $partialsLoader, 'partials' => array('foo' => '{{ foo }}'), 'helpers' => array('foo' => array($this, 'getFoo'), 'bar' => 'BAR'), 'escape' => 'strtoupper', 'charset' => 'ISO-8859-1'));
$this->assertSame($loader, $mustache->getLoader());
$this->assertSame($partialsLoader, $mustache->getPartialsLoader());
$this->assertEquals('{{ foo }}', $partialsLoader->load('foo'));
$this->assertContains('__whot__', $mustache->getTemplateClassName('{{ foo }}'));
$this->assertEquals('strtoupper', $mustache->getEscape());
$this->assertEquals('ISO-8859-1', $mustache->getCharset());
$this->assertTrue($mustache->hasHelper('foo'));
$this->assertTrue($mustache->hasHelper('bar'));
$this->assertFalse($mustache->hasHelper('baz'));
}
示例2: testConstructor
public function testConstructor()
{
$logger = new Mustache_Logger_StreamLogger(tmpfile());
$loader = new Mustache_Loader_StringLoader();
$partialsLoader = new Mustache_Loader_ArrayLoader();
$mustache = new Mustache_Engine(array('template_class_prefix' => '__whot__', 'cache' => self::$tempDir, 'cache_file_mode' => 777, 'logger' => $logger, 'loader' => $loader, 'partials_loader' => $partialsLoader, 'partials' => array('foo' => '{{ foo }}'), 'helpers' => array('foo' => array($this, 'getFoo'), 'bar' => 'BAR'), 'escape' => 'strtoupper', 'entity_flags' => ENT_QUOTES, 'charset' => 'ISO-8859-1'));
$this->assertSame($logger, $mustache->getLogger());
$this->assertSame($loader, $mustache->getLoader());
$this->assertSame($partialsLoader, $mustache->getPartialsLoader());
$this->assertEquals('{{ foo }}', $partialsLoader->load('foo'));
$this->assertContains('__whot__', $mustache->getTemplateClassName('{{ foo }}'));
$this->assertEquals('strtoupper', $mustache->getEscape());
$this->assertEquals(ENT_QUOTES, $mustache->getEntityFlags());
$this->assertEquals('ISO-8859-1', $mustache->getCharset());
$this->assertTrue($mustache->hasHelper('foo'));
$this->assertTrue($mustache->hasHelper('bar'));
$this->assertFalse($mustache->hasHelper('baz'));
$this->assertInstanceOf('Mustache_Cache_FilesystemCache', $mustache->getCache());
}