在 PHP 中包含文件时注释会产生影响吗?
Possible Duplicate:
Commenting interpreted code and performance
When you include a file in PHP with include()
or any other function, its perfomance is affected by the amount of comments of the included file?
(I am not saying I am going to sacrifice legibility)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,解析文件所需的时间节省是无法衡量的(太小),根本不值得考虑。可以说,这绝对不是性能瓶颈。
No, the savings of time required to parse the file is not even measurable (too small) and not worth slightest consideration. It's definitely not the bottleneck of performance, so to say.