访问index.php
<?php
$so = scws_new();
$so->set_charset('gbk');
// 这里没有调用 set_dict 和 set_rule 系统会自动试调用 ini 中指定路径下的词典和规则文件
$so->send_text("小姐姐,我喜欢你,做我女朋友吧!");
while ($tmp = $so->get_result()){
print_r($tmp);
}
$so->close();
?>
这是代码:
报错如下:Fatal error: Uncaught Error: Call to undefined function scws_new() in /www/wwwroot/index.php:2 Stack trace: #0 {main} thrown in /www/wwwroot/index.php on line 2
这种情况,有什么好的方法可以解决这个问题的,请教各位大神,小弟在这这里感谢你们了。