在(PHP)框架中,“经理”的好名字是什么?班级?
我正在构建一个 PHP 框架,但我的英语不是最好的。 我的框架中有几个类(数据库抽象、模块、路由器……),并且有一个地方它们都必须一起初始化和执行。
- 对于初始化并运行所有其他类的“主”类来说,什么是一个好名字?
I'm building a PHP framework and my english is not the best.
There are several classes (database abstraction, module, router,...) in my framework and there is a place where they all have to be initialized and executed together.
- What is a good name for a "master" class that initializes and runs all other classes?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(16)
BuckarooBonzai和BootstrapInitiator例程
BuckarooBonzaiAndTheBootstrapInitiatorRoutine
引导
添加随机文本,因为否则它不会让我提交
bootstrap
adding random text since it won't let me submit otherwise
无论您想如何称呼该框架?
Whatever you want to call the framework?
root?
添加随机文本,因为否则它不会让我提交
root?
adding random text since it won't let me submit otherwise
您可以将其命名为 Delegator。
You can name it Delegator.
初始化并运行所有其他类的“主”类的好名称是什么?
ClassFactory
What is a good name for a "master" class that initializes and runs all other classes?
ClassFactory
为什么不
在此处键入您的应用程序名称
?Why not
TypeYourAppNameHere
?我想这对于大师班来说是一个很好的名字
this will be a nice name for the master class i guess
核心
添加随机文本,因为否则它不会让我提交
core
adding random text since it won't let me submit otherwise
引导程序
添加随机文本,因为否则它不会让我提交
bootstrapper
adding random text since it won't let me submit otherwise
司机?
添加随机文本,因为否则它不会让我提交
Driver?
adding random text since it won't let me submit otherwise
通常这将是您的框架的名称。
$Opue
效果很好。或者您可以添加前缀。
fwOupe。
Gennerally that would be the name of your framework.
$Opue
would work nicely. Or you could add a prefix.
fwOupe.
我使用
Application
单例:I use an
Application
singleton:我将其称为
main
。 C++ main 函数在某些项目中执行相同的操作 - 只是创建一些重要类的实例。I will call it
main
. The C++ main function does the same things in some projects - just create instances of some important classes.全球工厂?
GlobalFactory ?
这是初始化或启动例程,对吗?那么为什么不使用
Boot
或GlobalInitialiser
或类似的东西呢?(根据需要调整疯狂的美式拼写;))
It's an initialisation or bootup routine right? So why not
Boot
orGlobalInitialiser
or similar?(adjust to crazy American spelling as needed ;))