代码之家  ›  专栏  ›  技术社区  ›  Himanshu Bisht

Json以[使用Json编码时,在使用php7.1的magento2中以“开头

  •  0
  • Himanshu Bisht  · 技术社区  · 5 年前

    这就是下面的代码,我不想要'['

    [
        {
            "success": "true",
            "data": {
                "mainimages": [
                    {
    

    这是我的密码

    $response = array(
        array(
            "success" => "true",
            "data" => $alldata,
            "newarrivalheading" => "NEW ARRIVALS",
            "instagramheading" => "CELEBS IN LULU",
            "specialpriceheading" => "SPECIAL PRICES",
            "editorwishlistheading" => "EDITOR'S WISHLIST",
            "stylehighlightheading" => "STYLE HIGHLIGHTS",
            "styletagline" => "#Looks to swipe right",
            "newarrivalindex" => 3,
            "instagramindex" => 9,
            "editorwishlistviewall" => "",
            "sliderimage" => $sliderimage
        )
    );      
    return $response;
    

    这就是我想要的

     {
            "success": "true",
            "data": {
                "mainimages": [
                    {
    
    0 回复  |  直到 5 年前
        1
  •  3
  •   RiggsFolly    5 年前

    所以像这样去掉不必要的外部数组

    $alldata = [1,2,3,4];
    $sliderimage = ['xz.jpg','ab.png'];
    
    $response = array(
                   "success" => "true",
                   "data" => $alldata,
                   "newarrivalheading" => "NEW ARRIVALS",
                   "instagramheading" => "CELEBS IN LULU",
                   "specialpriceheading" => "SPECIAL PRICES",
                   "editorwishlistheading" => "EDITOR'S WISHLIST",
                   "stylehighlightheading" => "STYLE HIGHLIGHTS",
                   "styletagline" => "#Looks to swipe right",
                   "newarrivalindex" => 3,
                   "instagramindex" => 9,
                   "editorwishlistviewall" => "",
                   "sliderimage" => $sliderimage
            );
    echo json_encode($response);
    

        {
        "success": "true",
        "data": [
            1,
            2,
            3,
            4
        ],
        "newarrivalheading": "NEW ARRIVALS",
        "instagramheading": "CELEBS IN LULU",
        "specialpriceheading": "SPECIAL PRICES",
        "editorwishlistheading": "EDITOR'S WISHLIST",
        "stylehighlightheading": "STYLE HIGHLIGHTS",
        "styletagline": "#Looks to swipe right",
        "newarrivalindex": 3,
        "instagramindex": 9,
        "editorwishlistviewall": "",
        "sliderimage": [
            "xz.jpg",
            "ab.png"
        ]
    }
    
    推荐文章