2

在服务器端包含的所有可能分隔符中,为什么 PHP 选择“小于问号 php”?

Rasmus(PHP 的发明者)私下回复了我,既然你关闭了这个问题,下面是答案:

它是一个 SGML 处理指令标签。请参阅http://en.wikipedia.org/wiki/Processing_Instruction。它最初是<? ... >,但网络迁移到 XML,所以它变成了<? ... ?>. 我一开始就忽略了 PITarget,因为在 web 世界中没有其他人使用它们,但是当 XML 东西开始入侵 html 时,我不得不添加它。


你可以试试

def hint1(p1,p2,p3,p4):
    if p1 or p2 or p3 or p4:
        return True

或者

def hint1(p1,p2,p3,p4)
    if p1:
        return True
    if p2:
        return True
    if p3:
        return True
    if p4:
        return True
    return False
4

1 回答 1

1

为什么不呢?...如果您只想写 '<?',请查看 short_opentag=On 配置 但它不推荐,我不确定它是否已经被弃用。

于 2013-05-29T18:41:59.443 回答