2
我想產生從PHP的XML格式的日期在XML格式的日期,PHP得到
以下是我期待動態生成的腳本:
$voice.trackTransactionPageView({
"orderId" : "55555",
"total" : "40.84",
"userId" : "7448dc2",
"email" : "[email protected]",
"nickname" : "john1981",
"deliveryDate" : "2011-01-21T11:36:47.384",
"locale" : "en_US"
});
如果你看到在上面的代碼中我有deliveryDate
具有XML格式的值,所以我想在我的代碼中使用PHP生成相同的代碼。
我試圖與date('Y-m-dTH:i', time());
,但它產生2014-09-29EDT02:28:11
我期待產生2011-01-21T11:36:47.384.
請讓我知道我能做到這一點。
謝謝。