gpt4 book ai didi

php - 如何从 CodeIgniter 中的模型加载助手?

转载 作者:可可西里 更新时间:2023-11-01 12:41:25 25 4
gpt4 key购买 nike

我想在模型中加载一些助手。这该怎么做?尝试使用:

${get_parent_class($this)}->load->helper ('text');

还是报错

Fatal error: Call to a member function helper() on a non-object

最佳答案

GSto 回答了 $this->load->helper('helpername') 但如果你在模型的方法中,$this 只是指那个模型的(类) 实例而不是 CI 全局。那是行不通的!

相反,您需要加载 CI 全局,然后加载助手:

// PHP 4
// $ci =& get_instance();
// PHP 5
$ci = get_instance();
$ci->load->helper('text');

关于php - 如何从 CodeIgniter 中的模型加载助手?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1680721/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com