phpcms/modules/search/index.php 代码如下:
```
public function public_get_suggest_keyword() {
$url = $_GET['url'].'&q='.$_GET['q'];
$res = @file_get_contents($url);
if(CHARSET != 'gbk') {
$res = iconv('gbk', CHARSET, $res);
}
echo $res;
}
```
![](https://images.seebug.org/contribute/790a2a43-f178-4172-9d68-7cb149af1581-1.jpg)
暂无评论