Can you access a model from inside another model in CodeIgniter?(您可以从 CodeIgniter 中的另一个模型内部访问模型吗?)
问题描述
我正在使用需要身份验证的 CodeIgniter 编写 web 应用程序.我创建了一个模型来处理我的所有身份验证.但是,我找不到从另一个模型内部访问此身份验证模型的方法.有没有办法从另一种模式内部访问模型,或者在 CodeIgniter 内部处理身份验证的更好方法?
I am writing a webapp using CodeIgniter that requires authentication. I created a model which handles all my authentication. However, I can't find a way to access this authentication model from inside another model. Is there a way to access a model from inside another mode, or a better way to handle authentication inside CodeIgniter?
推荐答案
通常,您不希望在对象内创建对象.这是一个坏习惯,相反,编写清晰的 API 并将模型注入您的模型中.
In general, you don't want to create objects inside an object. That's a bad habit, instead, write a clear API and inject a model into your model.
<?php
// in your controller
$model1 = new Model1();
$model2 = new Model2();
$model2->setWhatever($model1);
?>
这篇关于您可以从 CodeIgniter 中的另一个模型内部访问模型吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:您可以从 CodeIgniter 中的另一个模型内部访问模型吗?
- 如何在 Symfony2 中正确使用 webSockets 2021-01-01
- openssl_digest vs hash vs hash_hmac?盐与盐的区别HMAC? 2022-01-01
- 如何使用 Google API 在团队云端硬盘中创建文件夹? 2022-01-01
- 使用 GD 和 libjpeg 支持编译 PHP 2022-01-01
- PHP foreach() 与数组中的数组? 2022-01-01
- PHP - if 语句中的倒序 2021-01-01
- 如何从数据库中获取数据以在 laravel 中查看页面? 2022-01-01
- 覆盖 Magento 社区模块控制器的问题 2022-01-01
- Laravel 5:Model.php 中的 MassAssignmentException 2021-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01