在ecshop模板使用自定義函式

2022-04-11 14:50:25 字數 818 閱讀 1997

在ecshop模板使用自定義函式

可以增加自定義函式,在模板直接呼叫,例如: 或

1.模板裡使用

2.includes/lib_base.php裡面增加函式

function getpic($str, $width, $height)

else

}

3.includes/cls_template.php裡624行

case 'strip_tags':

$p = 'strip_tags(' . $p . ')';

break;

後面增加處理函式

case 'getpic':

$p = 'getpic(' . $p . ",$s[1],$s[2])";

break;

案例二(根據地區id返回名稱):

1.模板裡使用

2.includes/lib_base.php裡面增加函式

function get_region_name($id)
3.includes/cls_template.php裡624行

case 'strip_tags':

$p = 'strip_tags(' . $p . ')';

break;

//後面增加處理函式:開始

case 'get_region_name':

$p = 'get_region_name(' . $p . ")";

break;

//後面增加處理函式:結束

default:

# code...

break;

在ecshop模板使用自定義函式

可以增加自定義函式,在模板直接呼叫,例如 或 1.模板裡使用 2.includes lib base.php裡面增加函式 function getpic str,width,height else 3.includes cls template.php裡624行 case strip tags p ...

ecshop模板製作3 自定義布局

1,重新定義布局 about.dwt 2,新增庫元素 1 新建 about menu.lbi about content.lbi 2 引用 admin includes lib template.php檔案裡面 在新加的 about array陣列末尾加 library about menu.lbi...

Hibernate使用MySQL自定義函式

新建表 create table sys user id varchar 32 not null comment id name varchar 50 not null comment 登入名 parent id varchar 32 default null comment 父id primary...