标签:步骤 port index.php namespace new ble php文件 文件 str
1、在extend文件夹下面放extend/mail/phpmailer.php文件;
2、在applicatioon/index.php文件中写入
define(‘EXTEND_PATH‘, ‘../extend/‘);
3、在index控制器中引用
use think\Loader;
Loader::import(‘mail\PHPMailer‘, EXTEND_PATH);
$mail=new PHPMailer();
1、在extend文件夹下面放extend/mail/phpmailer.php文件;
2、打开phpmailer.php文件,并在头部添加
namespace mail;
3、在index控制器中引用
use mail;//此步骤相当于引入了所有命名空间为mail的文件
$mail=new \mail\PHPMailer();//PHPMailer is a name of class;
标签:步骤 port index.php namespace new ble php文件 文件 str
原文地址:http://www.cnblogs.com/leilei-1/p/8007093.html