我使用jQuery日期範圍選取器(http://tamble.github.io/jquery-ui-daterangepicker/)提交數據時顯示的格式如下。格式化jQuery UI DateRangePicker值(PHP)
{"start":"2015-09-17","end":"2015-09-23"}
現在,我要挑迄今只有這樣
<?php
$startDate: 2015-09-17;
$endDate: 2015-09-23;
?>
我用PHP str_replace函數但它不能正常工作。
您的幫助將非常感激。
這只是json。使用['json_decode()'](http://php.net/manual/en/function.json-decode.php)來獲取數組或對象的表單,您可以獲取這些值。這是基本的東西。 –