dongyang4615 2019-07-26 10:36
浏览 81
已采纳

Json以[并且当使用json_encode时以“magento2使用php7.1开头”开头

I want my json to start with { but if using json_encode it is getting converted into string, I am using php7.1 on ubuntu and working on magento 2.3

This is what I am getting with the below code, I don't want '['

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

Here is my code

$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;

This is what I want

 {
        "success": "true",
        "data": {
            "mainimages": [
                {
  • 写回答

1条回答 默认 最新

  • dounie0889 2019-07-26 10:52
    关注

    So remove the unnecessary outer array like so

    $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);
    

    RESULT

        {
        "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"
        ]
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥170 如图所示配置eNSP
  • ¥20 docker里部署springboot项目,访问不到扬声器
  • ¥15 netty整合springboot之后自动重连失效
  • ¥15 悬赏!微信开发者工具报错,求帮改
  • ¥20 wireshark抓不到vlan
  • ¥20 关于#stm32#的问题:需要指导自动酸碱滴定仪的原理图程序代码及仿真
  • ¥20 设计一款异域新娘的视频相亲软件需要哪些技术支持
  • ¥15 stata安慰剂检验作图但是真实值不出现在图上
  • ¥15 c程序不知道为什么得不到结果
  • ¥15 键盘指令混乱情况下的启动盘系统重装