class Dashboard extends CI_Controller
{
public function __construct()
{
parent::__construct();
$this->load->library('session');
}
//the rest of controller's code
}
我试图使用一个SOAP Web服务。我尝试使用一些cmd脚本文件在我的本地Windows机器上执行此应用程序。它的工作正常。但是当我在Unix服务器上尝试使用shell脚本时出现上述错误。有人可以建议解决方案吗?