我是php的初学者。我正在尝试将XML API集成到我的系统中。调用代码是
$XML = simplexml_load_file('http://my.mydomain.com/stats/report.xml?api_key=XXXXXXXX&start_date='.date('Y-m-d').'&end_date='.date('Y-m-d'));
我需要做的是;
我找不到如何描述。
答案 0 :(得分:2)
你可以像这样简单地使用strtotime()
电话:
$today = date('Y-m-d', strtotime('today') );
$yesterday = date('Y-m-d', strtotime('1 day ago') );
答案 1 :(得分:2)
$Start_Date=date('d.m.Y',strtotime("-1 days"));
$End_Date = date('d.m.y', strtotime('today') );
答案 2 :(得分:2)
PHP strtotime()函数有助于:
您可以使用
$XML = simplexml_load_file('http://my.mydomain.com/stats/report.xml?api_key=XXXXXXXX&start_date='.date('Y-m-d',strtotime('yesterday')).'&end_date='.date('Y-m-d',strtotime('yesterday'));
是的,那么简单,约会(' Y-m-d',strtotime('昨天'))给你昨天的日期!!
参考:http://php.net/manual/en/function.strtotime.php
int strtotime ( string $time [, int $now = time() ] )
$ time =日期/时间字符串。有效格式在Date and Time Formats.
中说明$ now =这是时间戳的可选参数,用作计算相对日期的基础。