我想使用PHPMailer的类进行测试。阅读oficial documentation后,我看到有两种方法可以包含在我的项目中:
1)使用作曲家
2)复制内容并包含路径
第一个选项,作曲家,我不知道怎么做。第二个选项,复制内容和包含路径看起来更容易。
我用这行编写了一个test.php:
<?php
session_start();
if(isset($_SESSION['username']) and $_SESSION['username'] != ''){
use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\Exception;
require 'assets/PHPMailer/src/Exception.php';
require 'assets/PHPMailer/src/PHPMailer.php';
require 'assets/PHPMailer/src/SMTP.php';
$mail = new PHPMailer;
echo 'Versión actual de PHP: ' . phpversion();
}else{
?>
<br>
<br>
<div class="row">
<div class="text-center">
<p class='errorLogin'>Inactive session, relogin <a href="login.php">here</a></p>
</div>
</div>
<?php
}?>
此代码仅将clases加载到环境中并生成对象PHPMailer类的实例。
运行后,日志文件显示错误:
[Tue Oct 17 10:17:10.331051 2017] [:error] [pid 3879] [客户 192.168.0.184:50679] PHP解析错误:语法错误,/var/www/test/sendMail.php中的意外“使用”(T_USE)
PHP版本:5.6.30-0 + deb8u1
有人能帮助我吗?
答案 0 :(得分:7)
问题是您使用use
关键字。来自文档:
use关键字必须在文件的最外层范围(全局范围)或命名空间内声明中声明。这是因为导入是在编译时完成的,而不是运行时,所以它不能是块作用域。
因此,您的代码应该是这样的:
<?php
use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\Exception;
session_start();
if (isset($_SESSION['username']) and $_SESSION['username'] != ''){
[...]
答案 1 :(得分:1)
<?php
use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\Exception;
//Your function Code
?>
在页面顶部使用此类,而不是在函数内部
答案 2 :(得分:0)
<?php
use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\Exception;
require 'path/to/PHPMailer/src/Exception.php';
require 'path/to/PHPMailer/src/PHPMailer.php';
require 'path/to/PHPMailer/src/SMTP.php';
如果您未明确使用SMTP类(您可能不是),则不需要SMTP类的使用行。
按照Phpmailer的Doc Doc
<?php
// Import PHPMailer classes into the global namespace
// These must be at the top of your script, not inside a function
use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\Exception;
//Load composer's autoloader
require 'vendor/autoload.php';
$mail = new PHPMailer(true); // Passing `true` enables exceptions
try {
//Server settings
$mail->SMTPDebug = 2; // Enable verbose debug output
$mail->isSMTP(); // Set mailer to use SMTP
$mail->Host = 'smtp1.example.com;smtp2.example.com'; // Specify main and backup SMTP servers
$mail->SMTPAuth = true; // Enable SMTP authentication
$mail->Username = 'user@example.com'; // SMTP username
$mail->Password = 'secret'; // SMTP password
$mail->SMTPSecure = 'tls'; // Enable TLS encryption, `ssl` also accepted
$mail->Port = 587; // TCP port to connect to
//Recipients
$mail->setFrom('from@example.com', 'Mailer');
$mail->addAddress('joe@example.net', 'Joe User'); // Add a recipient
$mail->addAddress('ellen@example.com'); // Name is optional
$mail->addReplyTo('info@example.com', 'Information');
$mail->addCC('cc@example.com');
$mail->addBCC('bcc@example.com');
//Attachments
$mail->addAttachment('/var/tmp/file.tar.gz'); // Add attachments
$mail->addAttachment('/tmp/image.jpg', 'new.jpg'); // Optional name
//Content
$mail->isHTML(true); // Set email format to HTML
$mail->Subject = 'Here is the subject';
$mail->Body = 'This is the HTML message body <b>in bold!</b>';
$mail->AltBody = 'This is the body in plain text for non-HTML mail clients';
$mail->send();
echo 'Message has been sent';
} catch (Exception $e) {
echo 'Message could not be sent.';
echo 'Mailer Error: ' . $mail->ErrorInfo;
}
答案 3 :(得分:0)
我仍然不能完全使用“ use”来获得全部信息,但是我会及时学习和理解的。无论如何,我对问题的解决方案是在我的代码中找到其他“用途”,并将其放置在它们旁边-即使它不在代码的开头。
寻找其他已安装的应用程序,例如我的Guzzle。然后只需将它们放在一起。