1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| <?php
| /*
| * 分城市调用
| * ----------------------------------------------------------------------------
| *
| *
| * ============================================================================
| */
| function smarty_function_listurl($paramer,&$smarty){
| global $config;
|
| $url = searchListRewrite($paramer,$config);
|
| return $url;
| }
| ?>
|
|