mirror of
https://github.com/smarty-php/smarty.git
synced 2026-08-10 15:31:28 +02:00
14 lines
313 B
PHP
14 lines
313 B
PHP
<?php
|
|||
|
|
|
||
|
|
namespace Smarty\Compile\Modifier;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Smarty json_encode modifier plugin
|
||
|
|
*/
|
||
|
|
class JsonEncodeModifierCompiler extends Base {
|
||
|
|
|
||
|
|
public function compile($params, \Smarty\Compiler\Template $compiler) {
|
||
|
|
return 'json_encode(' . $params[0] . (isset($params[1]) ? ', (int) ' . $params[1] : '') . ')';
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|