使用PHP发送数组

时间:2016-03-23 20:01:54

标签: php arrays json

我有一个名为$ json的PHP数组,我从.txt文件解码。它的信息如下:

enter image description here

我尝试使用PHP将[email]和[fullname]发送到我的数据库。我很困惑如何将$ json数组实际添加到我的代码中。我已经成功添加了示例数据,但在替换add(array(我的代码中断时。任何人都可以给我一个如何进一步追求的小费吗?

$url = 'http://www.mywebsite.com/form/test.txt';
$content = file_get_contents($url);
$json = json_decode($content,true);
str_replace(array('[', ']'), '', htmlspecialchars(json_decode($json), ENT_NOQUOTES));
$auth = array(
'api_key' => 'xxxxxxxxxxxxx');
$wrap = new CS_REST_Subscribers('xxxxxxxxx', $auth);
$result = $wrap->add(array(
'EmailAddress' => "thisisatest@gmail.com",
'Name' => "john",
'CustomFields' => array(
    array(
        'Key' => 'Field 1 Key',
        'Value' => 'Field Value'
    ),
    array(
        'Key' => 'Field 2 Key',
        'Value' => 'Field Value'
    ),
    array(
        'Key' => 'Multi Option Field 1',
        'Value' => 'Option 1'
    ),
    array(
        'Key' => 'Multi Option Field 1',
        'Value' => 'Option 2'
    )
),
'Resubscribe' => true
));

0 个答案:

没有答案