我需要一些帮助来理解 CodeIgniter 的钩子逻辑以使代码适应我的需要。
页面:https ://www.codeigniter.com/user_guide/general/hooks.html
事实上,我不得不从这里修改 MySQL 的数据库驱动程序:
function _from_tables($tables)
{
if ( ! is_array($tables))
{
$tables = array($tables);
}
return '('.implode(', ', $tables).')';
}
对此:
function _from_tables($tables)
{
if ( ! is_array($tables))
{
$tables = array($tables);
}
return implode(', ', $tables);
}
我使用 Active Record 库制作了这个 mod 来使用 UNION 查询。
有人可以帮我做一个钩子,以防止在我更新核心系统时我的修改被覆盖吗?
提前致谢 !