尝试将电子邮件中的附件保存到我的服务器中,到目前为止我的脚本工作正常,但是它将文件保存在我的 wp 根文件夹中。
foreach ($attachments as $key => $attachment) {
$name = $attachment['name'];
$contents = $attachment['attachment'];
file_put_contents($name, $contents);
}
如何将文件保存到不同的文件夹中?
尝试使用此代码但无法正常工作。
foreach ($attachments as $key => $attachment) {
$name = $attachment['name'];
$contents = $attachment['attachment'];
file_put_contents(get_stylesheet_directory_uri() . '/email_attachments/' . $name, $contents);
}
任何想法?