需要立即定义常量的文件还是在 PHP 中使用?
我有大约 20 个文件,其中包含 10-15 倍的文件:
define('someConstantName','stringBetween10and200Chars');
这些文件对于应用程序都至关重要,但每个常量文件都与应用程序页面并行。
例如,index.php 将需要 index_constants.php 等等。
问题是,我应该将所有常量定义放在一个文件中,还是需要相对于它们所属的页面的不同文件。
我问的是速度和效率。
谢谢。
I have about 20 files containing 10-15 times this:
define('someConstantName','stringBetween10and200Chars');
those are all critical for the app, but each constants-file is parallel to an app page.
For example, index.php will require index_constants.php so on so forth.
The question is, should I make one file of all constant-definitions together, or require different files relatively to the pages they belong to.
I'm asking in terms of speed and efficiency.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您正在寻找性能(因为将包含一个包含无用数据的文件,而该页面只需要一个),那么为每个页面放置一个文件,但如果您正在寻找轻松/简单 然后你可以将它们放在一个文件中(如果你认为它不会给你带来任何复杂性)。谢谢...
If you are looking for the performance (since a file with useless data will be included whereas the page needs only one) then put a single file for each page but if you looking for ease/simplicity then you can put them in a single file (if you think it will not create any sort of complexity for you). Thanks...