mirror of
https://github.com/smarty-php/smarty.git
synced 2026-01-31 02:29:30 +01:00
21 lines
559 B
PHP
21 lines
559 B
PHP
|
|
<?php
|
||
|
|
namespace Smarty\Compile\Modifier;
|
||
|
|
/**
|
||
|
|
* Smarty from_charset modifier plugin
|
||
|
|
* Type: modifier
|
||
|
|
* Name: from_charset
|
||
|
|
* Purpose: convert character encoding from $charset to internal encoding
|
||
|
|
*
|
||
|
|
* @author Rodney Rehm
|
||
|
|
*/
|
||
|
|
|
||
|
|
class FromCharsetModifierCompiler extends Base {
|
||
|
|
|
||
|
|
public function compile($params, \Smarty\Compiler\Template $compiler) {
|
||
|
|
if (!isset($params[ 1 ])) {
|
||
|
|
$params[ 1 ] = '"ISO-8859-1"';
|
||
|
|
}
|
||
|
|
return 'mb_convert_encoding(' . $params[ 0 ] . ', "' . addslashes(\Smarty\Smarty::$_CHARSET) . '", ' . $params[ 1 ] . ')';
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|