gpt4 book ai didi

php - 自定义配置文件 - Codeigniter

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:53:54 24 4
gpt4 key购买 nike

我尝试创建包含我的电子邮件服务器配置的自定义电子邮件配置文件。

我在/config 目录下创建了它并且代码如下:

<?php

$config = Array(
'protocol' => 'smtp',
'smtp_host' => 'ssl://smtp.googlemail.com',
'smtp_port' => 465,
'smtp_user' => 'mertmetinbjk@gmail.com',
'smtp_pass' => '*************',
'mailtype' => 'html'
);




$this->load->library('email', $config);
$this->email->set_newline("\r\n");

?>

为了使用它,我调用了我的 kayit.php,它是一个 Controller 构造函数

 $this->config->load('email'); 

但是,我得到了这样的错误 enter image description here

最佳答案

我引用手册:

If you prefer not to set preferences using the above method, you can instead put them into a config file. Simply create a new file called the email.php, add the $config array in that file. Then save the file at config/email.php

配置文件只是一个数组(名为 $config),只是它无法访问 $this 引用。您正在使用的代码(例如加载库)必须在 Controller 中在配置文件中!

关于php - 自定义配置文件 - Codeigniter,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9482976/

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