在 json 中发送 url 问题

Issue sending url in json

我正在发送这样的 json 回复:

[{"Link":{"iTune":"https:\/\/itunes.apple.com\/in\/app\/mx-video-player-play-hd-videos\/id730291646?mt=8"}}]

但是与此相关的问题是它包含特殊字符

我的代码:

header('Content-type: application/json');
    $gamePlatform[] = array("Link" => array('iTune' => $iTune));

        echo json_encode($gamePlatform);

如何发送正确的link各位大侠帮帮我

使用str_replace():

    $gamePlatform[] = array("Link" => array('iTune' => $iTune));

    $json = json_encode($gamePlatform);
    $a = str_replace('\/', '/', $json);
    echo $a;