dqs86517 2015-07-30 22:27
浏览 80
已采纳

更改字符串内容的顺序

I have this data

$s = '{ "date": "2015-07-30","value": 66568 },{ "date": "2015-07-29","value": 66598 },{ "date": "2015-07-28","value": 66680 },{ "date": "2015-07-27","value": 66774 }';

Im graphing the data and basically i need the graph to show the earliest date first, this can be accomplished if i simply flip the data. I tried using:

implode(' ', array_reverse(explode(',', $s)))

and that didnt work.

The data comes from the db and is appended to

if($test!=1) {
    $testString = $testString.',{ "date": "'.date("Y-m-d",strtotime($date)).'","value": '.$res[$row]['followed_by'].' }';  
} else {
    $testString = $testString.'{ "date": "'.date("Y-m-d",strtotime($date)).'","value": '.$res[$row]['followed_by'].' }';  
}

The data is added to the graph with "dataProvider": [ <?php echo $testString; ?> ]

  • 写回答

1条回答 默认 最新

  • dsa5211314 2015-07-30 22:46
    关注

    You can try to use this code:

    $s = '{ "date": "2015-07-30","value": 66568 },{ "date": "2015-07-29","value": 66598 },{ "date": "2015-07-28","value": 66680 },{ "date": "2015-07-27","value": 66774 }';
    
    function reverse_str($str) {
      $decoded = json_decode(sprintf('[%s]', $str), true);
      $reversed = array_reverse($decoded);
      return trim(json_encode($reversed), '[,]');  
    }
    
    Usage:
    $newStr = reverse_str($s);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 从键盘随机输入A-H中的一串字符串,用七段数码管方法进行绘制。提交代码及运行截图。
  • ¥15 TYPCE母转母,插入认方向
  • ¥15 如何用python向钉钉机器人发送可以放大的图片?
  • ¥15 matlab(相关搜索:紧聚焦)
  • ¥15 基于51单片机的厨房煤气泄露检测报警系统设计
  • ¥15 路易威登官网 里边的参数逆向
  • ¥15 Arduino无法同时连接多个hx711模块,如何解决?
  • ¥50 需求一个up主付费课程
  • ¥20 模型在y分布之外的数据上预测能力不好如何解决
  • ¥15 processing提取音乐节奏