我有一个函数,其中有一个数组。我想调用该函数 foo 并在我的脚本中使用 $result 索引(文本、html、附件)。请帮助我,因为我对 php 完全陌生。我正在尝试将数组调用到 mail() 方法。并得到错误提示字符串和它的 id 数组。如何将数组插入相关的邮件方法。
function foo($a)
{
if (is_resource($b))
{
$result = array
(
'text' => null,
'html' => null,
'attachments' => array(),
);
}
return $result;
}