Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
阅读这个引人入胜的问题让我想起了几周前偶然发现的一段代码;它给了我几分钟的困惑,直到我弄清楚它为什么起作用,也许它对其他人也会很有趣。
<?php http://example.com/some-article $items = get_items(); // etc.
显然,程序员想在代码块之前添加一个解释性链接作为注释,但忘记//在开头添加。尽管如此,代码工作正常。你能说出为什么吗?
//
这http:是一个转到标签,该行的其余部分被注释掉。
http: