⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 modifier.replace.php

📁 ShopEx网上商店系统V4.8版是中国最大的网店软件提供商ShopEx旗下网上商店最新版本。此次新版本的系统底层设计做出了重大调整
💻 PHP
字号:
<?php/** * Smarty plugin * @package Smarty * @subpackage plugins *//** * Smarty replace modifier plugin * * Type:     modifier<br> * Name:     replace<br> * Purpose:  simple search/replace * @link http://smarty.php.net/manual/en/language.modifier.replace.php *          replace (Smarty online manual) * @author   Monte Ohrt <monte at ohrt dot com> * @param string * @param string * @param string * @return string */function smarty_modifier_replace($string, $search, $replace){    return str_replace($search, $replace, $string);}/* vim: set expandtab: */?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -