我尝试将http://ci-merchant.org/用于CodeIgniter。但是当我加载商家库时,我收到了这些错误:
遇到PHP错误
严重性:警告
消息:stripos()期望参数1为字符串,给定数组为
文件名:libraries / merchant.php
行号:97
遇到PHP错误
严重性:警告
消息:strtolower()期望参数1为字符串,给定数组
文件名:libraries / merchant.php
行号:103
这是我的代码:
$this->load->library('merchant');
$this->merchant->load('paypal_express');
答案 0 :(得分:0)
查看source of that file,驱动程序名称需要作为字符串传递。所以我非常怀疑你上面提到的两行代码实际上是被调用的代码,看起来你传递一个数组作为驱动程序名称。
如果您不确定它的来源,请尝试在merchant.php文件中添加一些debug_print_backtrace()
行,以确定数组的传递位置。