@qingjieshouliang
Current Path : /www/wwwroot/eblliwsm.com/c7bd1a80/Extend/Vendor/Smarty/plugins/ |
Current File : /www/wwwroot/eblliwsm.com/c7bd1a80/Extend/Vendor/Smarty/plugins/variablefilter.htmlspecialchars.php |
<?php /** * Smarty plugin * * @package Smarty * @subpackage PluginsFilter */ /** * Smarty htmlspecialchars variablefilter plugin * * @param string $source input string * @param Smarty_Internal_Template $smarty Smarty object * @return string filtered output */ function smarty_variablefilter_htmlspecialchars($source, $smarty) { return htmlspecialchars($source, ENT_QUOTES, SMARTY_RESOURCE_CHAR_SET); } ?>