如何在 PHP 中创建可由 .NET 的非标准日期格式读取的日期字符串:
例如,鉴于此 PHP 代码:
$fetch = mysql_query("SELECT birthday FROM people");
while ($row = mysql_fetch_array($fetch, MYSQL_ASSOC)) {
$birthday = $row['birthday'];
$json = ??? // some way to convert it to the .net json format
}
如何操作 PHP 日期以返回 C#/.Net 的 json 反序列化方法所期望的这种 JSON 样式:
{"birthday":"\/Date(1331550000000)\/"}