一句代码不太清楚

WBOY
Release: 2016-06-13 12:51:50
Original
762 people have browsed it

一句代码不太明白
echo "
 文件上次修改时间".date("Y-m-d H:i:s)",$file_info['mtime']);

echo "
 文件上次修改时间"这一段看的懂 
后面加 .date("Y-m-d H:i:s)",连接 为什么要加这俩双引号,而且后面引号 为什么放在括号外面。 就这不明白

php file io
------解决方案--------------------
写错了吧,
echo "
 文件上次修改时间".date("Y-m-d H:i:s",$file_info['mtime']);
------解决方案--------------------
date("Y-m-d H:i:s",$file_info['mtime']);
date("Y-m-d H:i:s)",$file_info['mtime']);

多了一个括号而已,运行下就明白了。
------解决方案--------------------
写错了,那个括号不应该有。
------解决方案--------------------
写错了,那个括号不应该有。
------解决方案--------------------
你的代码:.date("Y-m-d H:i:s)",$file_info['mtime']);
换成:.date("Y-m-d H:i:s",$file_info['mtime']);
------解决方案--------------------
你觉得不理解的地方,是最不该不理解的地方
到那里字符串还没有结束,你就不能断章取义

字符串中可以保存任何内容,当然也包括 date 的格式串
------解决方案--------------------
你把 date("Y-m-d H:i:s",$file_info['mtime'])当成字符串
PHP用点  ( . )  拼接字符串的

echo "
 文件上次修改时间"   .   date("Y-m-d H:i:s",$file_info['mtime'])  ;
------解决方案--------------------
由一位粗心者,引发的讨论
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template