getenv
是一个用于从环境变量中获取值的 PHP 函数
以下是一个使用 getenv
和第三方服务(如 SendGrid)集成的示例:
composer require sendgrid/sendgrid
.env
文件,用于存储 SendGrid API 密钥:SENDGRID_API_KEY=your_sendgrid_api_key_here
getenv
函数获取 SendGrid API 密钥,并将其用于发送电子邮件:<?php
require 'vendor/autoload.php';
use SendGrid\Mail\Mail;
// 获取 SendGrid API 密钥
$apiKey = getenv('SENDGRID_API_KEY');
// 设置电子邮件内容
$email = new Mail();
$email->setFrom("test@example.com", "Example User");
$email->addTo("recipient@example.com", "Recipient User");
$email->setSubject("Test email");
$email->addContent("text/plain", "This is a test email.");
// 发送电子邮件
$sendgrid = new \SendGrid($apiKey);
try {
$response = $sendgrid->send($email);
print_r($response);
} catch (Exception $e) {
echo 'Caught exception: '. $e->getMessage() ."\n";
}
?>
在这个示例中,我们使用 getenv
函数从环境变量中获取 SendGrid API 密钥,然后将其用于发送电子邮件。这样可以确保敏感信息(如 API 密钥)不会直接出现在代码中,从而提高了应用程序的安全性。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。