尝试使用 WAMP 运行站点时遇到此错误。
但它在我的 LAMP VM 上运行良好。
父函数具有以下签名:
public function get($table, $join = null, $column = null, $where = null)
{
它像这样扩展:
class DatabaseAccess extends Medoo
{
public function get($table, $columns, $where = null)
{
return parent::get($table, $columns, $where);
}
WAMP 对此是否更严格,还是我遗漏了一些明显的东西?