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.ini 和 apache)配置为尽可能严格。例如:
给定路径中的类c:\xampp\htdocs\test\classes\My.Class.php
c:\xampp\htdocs\test\classes\My.Class.php
我想要那个
include('\classes\my.class.php');
失败。 (即使在窗户上)
include('./classes/My.Class.php');
高兴。 区分大小写
主要原因是 appfog 对路径非常严格,不允许在其中使用反斜杠并且区分大小写。
而不是使用包含,也许制作一个使用所有规则的自动加载器。
然后您可以控制文件的包含方式。