插入带有内插变量的JSON字符串不起作用

时间:2019-09-14 00:08:32

标签: php json interpolation string-interpolation

我正在使用Rocketium API自动生成视频。

为了准备视频中使用的“场景”,我从数据库表中的行构建了一个JSON字符串:

foreach ($products as $product) {

    if ($product['image_one_url']) {
        $product_image = $product['image_one_url'];
    } else {
        $product_image = 'no_image.png';
    }

    $string[] = [
        "text" => $product['product_name'],
        "image" => $product_image
    ];

}

$string = json_encode($string, JSON_UNESCAPED_SLASHES);
$string = addslashes($string);

$string的输出方式如下:

[{\"text\":\"Definitions\",\"image\":\"vesa_definitions.jpg\"},{\"text\":\"Persona\",\"image\":\"vesa_persona.jpg\"},{\"text\":\"Universal Invitation\",\"image\":\"vesa_universal_invitation.jpg\"},{\"text\":\"Immortal\",\"image\":\"vesa_immortal.jpg\"},{\"text\":\"Birth\",\"image\":\"vesa_birth.jpg\"},{\"text\":\"Red Eye\",\"image\":\"vesa_red_eye.jpg\"},{\"text\":\"Lakshmi (Resurrection)\",\"image\":\"vesa_lakshmi.jpg\"},{\"text\":\"T(r)opical\",\"image\":\"vesa_tropical.jpg\"},{\"text\":\"Fork and Flip\",\"image\":\"vesa_fork_and_flip.jpg\"},{\"text\":\"Stereoscopic\",\"image\":\"vesa_stereoscopic.jpg\"},{\"text\":\"I AM SATOSHI NAKAMOTO\",\"image\":\"vesa_takeshi_nakamoto.jpg\"}]

现在,我要使用此字符串,并尝试使用插值变量将其插入此处:

curl_setopt($ch, CURLOPT_POSTFIELDS, "{\"videoBackground\": \"background.jpg\", \"audio_mood\": \"inspirational\", \"logoImage\": \"logo.png\", \"title\": \"Products\", \"themeId\": \"5a15310cabc5e17e6bf29525\", \"scenes\": {$string}}");

由于某种原因,这对我不起作用,尽管当我将JSON字符串与有效示例进行比较时,它的格式相同:

curl_setopt($ch, CURLOPT_POSTFIELDS, "{\"videoBackground\": \"background.jpg\", \"audio_mood\": \"inspirational\", \"logoImage\": \"logo.png\", \"title\": \"Products\", \"themeId\": \"5a15310cabc5e17e6bf29525\", \"scenes\": [{\"text\" : \"{Hello there\", \"image\" : \"https://rocketium.com/videos/1234567890/resized/abcdefgh.mp4\", \"fontSize\" : \"14px\"}, { \"text\" : \"Slide 2 goes here\", \"image\" : \"https://rocketium.com/videos/1234567890/resized/abcdefgh.mp4\" }, { \"text\" : \"Slide 3 here\", \"image\" : \"https://rocketium.com/videos/1234567890/resized/abcdefgh.mp4\" }, { \"text\" : \"Slide 4 here\", \"image\" : \"image_goes_here.jpg\" }]}");

我添加了斜杠和所有内容。这是插值变量的问题还是我缺少的其他东西?

2 个答案:

答案 0 :(得分:2)

使用数据结构,而仅在完成后才转换为JSON,而不是尝试将一个字符串塞入另一个字符串中,而是手动转义引号并希望获得最佳效果。

类似这样的东西:

foreach ($products as $product) {

    if ($product['image_one_url']) {
        $product_image = $product['image_one_url'];
    } else {
        $product_image = 'no_image.png';
    }

    $string[] = [
        "text" => $product['product_name'],
        "image" => $product_image
    ];

}

$template = json_decode("{\"videoBackground\": \"background.jpg\", \"audio_mood\": \"inspirational\", \"logoImage\": \"logo.png\", \"title\": \"Products\", \"themeId\": \"5a15310cabc5e17e6bf29525\"}");

$template['scenes'] = $string;

// Now you can encode the whole thing to JSON in one go
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($template));

答案 1 :(得分:1)

@chris是正确的,我只想告诉您为什么您的代码不起作用。因为您实际上向json字符串注入了额外的反斜杠,所以在工作示例中,没有真正的反斜杠(它们只是出现在代码中以告诉PHP下一个字符是双引号而不是结束符)一个)

此字符串"\""仅包含一个双引号,而此字符串'\"'包含一个反斜杠和一个双引号

工作示例中的scenes属性实际上包含了此

 $scenes = '[{"text":"Definitions","image":"vesa_definitions.jpg"}]';

但这就是您使用addslashes()

所做的
 $scenes = '[{\"text\":\"Definitions\",\"image\":\"vesa_definitions.jpg\"}]';