php的file_get_contents函数抓取的url中获取当天日期应该怎么写
比如原urlhttp://baidu.lecai.com/lottery/draw/list/22?d=2017-02-13;php中的代码file_get_conten...
比如原url http://baidu.lecai.com/lottery/draw/list/22?d=2017-02-13;
php中的代码file_get_contents('http://baidu.lecai.com/lottery/draw/list/22?d=.date("Y-m-d").');
代码中url尾部获取当天的日期解析失败。是解析符错了吗,应该怎么写 展开
php中的代码file_get_contents('http://baidu.lecai.com/lottery/draw/list/22?d=.date("Y-m-d").');
代码中url尾部获取当天的日期解析失败。是解析符错了吗,应该怎么写 展开
展开全部
写法错了,这样只是一个字符串,date()并没有生效而且用法也不对
$dTime = date("Y-m-d",time());
file_get_contents('http://baidu.lecai.com/lottery/draw/list/22?d='.$dTime );
$dTime = date("Y-m-d",time());
file_get_contents('http://baidu.lecai.com/lottery/draw/list/22?d='.$dTime );
展开全部
php的file_get_contents函数在获取url时,那个url应该怎么拼接,只能把参数放到最后吗,中间的参数可以自定义吗,要怎么写?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你是不是可以把整个的url拿出来,正则匹配啊?file_get_contents函数好像不能直接拿你需要得到值吧?
/([0-9]{4}-[0-9]{2}-[0-9]{2})/
/([0-9]{4}-[0-9]{2}-[0-9]{2})/
更多追问追答
追问
我是需要打开这个网页,因为网址的这个部分,都是当天的日期,每天都有变化,如果能这里获取当天日期直接打开,就不用每次都重复输入了。
http://baidu.lecai.com/lottery/draw/list/22?d=2017-02-11(当天日期);
http://baidu.lecai.com/lottery/draw/list/22?d=2017-02-12(当天日期);
追答
//你看看这样行不行
$date = date('Y-m-d');//当前日期
$url = "http://baidu.lecai.com/lottery/draw/list/22?d=".$date;//拼接url
file_get_contents($url);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你引号打错位置了吧
file_get_contents('http://baidu.lecai.com/lottery/draw/list/22?d='.date("Y-m-d"));
file_get_contents('http://baidu.lecai.com/lottery/draw/list/22?d='.date("Y-m-d"));
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询