curlopt_postfields $ params' to'作为阵列?

时间:2014-12-05 00:56:01

标签: php arrays curl

与此处完全相同的方法:SendGrid with dynamic PHP params但我想要做的是将多个'设置为'和' cc'电子邮件地址。可以将这些设置为当前实现的数组吗?

$params = array(
    'api_user'  => $user,
    'api_key'   => $pass,
    'to' => array('user1@example.com','user2@example.com'),
    'cc' => array('user3@example.com','user4@example.com'),
    'subject'   => 'test email',
    'html'      => '<p>This is a test email</p>',
    'text'      => 'done',
    'from'      => 'admin@example.com'
  );

curl_setopt ($session, CURLOPT_POSTFIELDS, $params;

当我只在&#39;中设置一封电子邮件时,它运作良好并发送电子邮件。和&#39; cc&#39;没有数组,但当我作为数组添加时,它不会运行。

我也试过了,但它没有运行。

curl_setopt ($session, CURLOPT_POSTFIELDS, http_build_query($params);

遗憾的是,文档中没有说明如何在to / cc字段中传递多个地址 - https://sendgrid.com/docs/Code_Examples/php.html

2 个答案:

答案 0 :(得分:1)

PHP的cURL库只知道如何处理一维数组,因此您需要使用http_build_query()手动构建数据字符串,然后将其设置为CURLOPT_POSTFIELDS

如果您需要更好地控制数据字符串的格式[例如:复杂帖子中的文件上传],下面的一个应该可以正常工作。

$params = array(
    'api_user'  => 'foo',
    'api_key'   => 'bar',
    'to' => array('user1@example.com','user2@example.com'),
    'cc' => array('user3@example.com','user4@example.com'),
    'subject'   => 'test email',
    'html'      => '<p>This is a test email</p>',
    'text'      => 'done',
    'from'      => 'admin@example.com',
    'file'      => '@foobar.txt'
);

// returns a query string
function encode1($params) {
        $data_arr = array();
        foreach( $params as $key => $value ){
                if( ! is_array($value) ) {
                        if( strpos($value, '@') === 0 ) { $encvalue = $value; }
                        else { $encvalue = urlencode($value); }
                        $data_arr[] = sprintf('%s=%s', urlencode($key), $encvalue);
                } else {
                        foreach( $value as $item ) {
                                if( strpos($item, '@') === 0 ) { $encvalue = $item; }
                                else { $encvalue = urlencode($item); }
                                $data_arr[] = sprintf('%s=%s', urlencode($key.'[]'), $encvalue);
                        }
                }
        }
        return implode('&', $data_arr);
}
var_dump(encode1($params));
/* result:
string(254) "api_user=foo&api_key=bar&to%5B%5D=user1%40example.com&to%5B%5D=user2%40example.com&cc%5B%5D=user3%40example.com&cc%5B%5D=user4%40example.com&subject=test+email&html=%3Cp%3EThis+is+a+test+email%3C%2Fp%3E&text=done&from=admin%40example.com&file=@foobar.txt"
*/

// returns an array
function encode2($params) {
        $out = array();
        foreach( $params as $key => $value ) {
                if( ! is_array($value) ) {
                        $out[$key] = $value;
                } else {
                        for( $i=0; $i<count($value); $i++ ) {
                                $index = sprintf('%s[%d]', $key, $i);
                                $out[$index] = $value[$i];
                        }
                }
        }
        return $out;
}
var_dump(encode2($params));
/* result:
array(11) {
  ["api_user"]=>string(3) "foo"
  ["api_key"]=> string(3) "bar"
  ["to[0]"]=>   string(17) "user1@example.com"
  ["to[1]"]=>   string(17) "user2@example.com"
  ["cc[0]"]=>   string(17) "user3@example.com"
  ["cc[1]"]=>   string(17) "user4@example.com"
  ["subject"]=> string(10) "test email"
  ["html"]=>    string(27) "<p>This is a test email</p>"
  ["text"]=>    string(4) "done"
  ["from"]=>    string(17) "admin@example.com"
  ["file"]=>    string(11) "@foobar.txt"
}
*/

答案 1 :(得分:0)

您必须将电子邮件作为数组值传递。尝试以下代码段:

On Error

现在应该可以工作了! :)