与仅引用(包含)zend 框架库相比,使用 zend ce 服务器有什么真正的优势吗?
我是 PHP 框架的新手,目前我正在尝试 Zend Framework (ZF)。在安装软件方面,我很老式,我喜欢单独安装 apache/mysql/php,因为我发现更容易,而且它让我可以更好地控制它。
似乎“鼓励”使用 Zend Framework 进行开发的方式是使用 Zend (CE) Server。我个人不喜欢应用程序安装其他所有内容(PHP/Apache 等)的想法。
据我所知,如果我在 php.ini 路径中包含 Zend Framework Library,我就可以开始了。那么使用 Full Zend (CE) Server 有什么真正的优势吗??
I'm new to PHP frameworks, and currently I'm trying Zend Framework (ZF). I'm old fashioned when it comes to installing software, I like to install apache/mysql/php all separetely since I find easier and it gives me more control of it.
It seems that the "encouraged" way to develop with Zend Framework is using the Zend (CE) Server. I personally don't like this idea of a app install everything else (PHP/Apache and so on).
From what I've seen if I include Zend Framework Library in php.ini path I'm ready to go. So is there any real advantage to use the Full Zend (CE) Server??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您已经在计算机上使用 apache/php/mysql 堆栈进行开发,我认为安装 Zend Server 没有任何优势。据我所知,Zend 框架只是普通的 PHP,使用任何 Zend Server 功能的代码没有什么特别的。
If you are already developing with apache/php/mysql stack on your machine, I see no advantage to install Zend Server. As far as I can tell, Zend framework is just plain PHP, there is nothing special in the code that makes use of any Zend Server functionality.
我得到了我的信息表 wikipedia :有简单的比较
之间
CE 版本
应用程序监控,单个 PHP 请求的运行时监控是否请求几个不同的条件
应用程序问题诊断 Zend 下载服务器(仅限 Linux)- 允许下载大型内容,例如视频,而无需占用 Apache 进程
,或者您可能会发现此页面很有帮助:http://www.zend.com/en/products/server/editions
但从我的角度来看:你可以自定义你的 apache/mysql/php 使其与 CE 相同版本
I got my info form wikipedia : there is simple comparison
between the both
the CE version misses these spec :
Application monitoring ,Does runtime monitoring of individual PHP requests several different conditions
Application problem diagnostics Zend Download Server (Linux only) - Allows for large content, such as videos, to be downloaded without tying up an Apache process
or you might find this page is helpful : http://www.zend.com/en/products/server/editions
but from my point of view : you can customize your apache/mysql/php to be identical to the CE version
您不需要 Zend Server,特别是如果您可以设置自己的环境。另一方面,Zend Server 针对运行基于 Zend Framework 的应用程序进行了优化。当您也开始使用 Zend Studio 时,它就变得特别有意义。您的 AMP 堆栈中出现任何类型问题的可能性较小。
除此之外,Zend Server 确实是一个很棒的堆栈。比现有的所有 *AMP 先进得多。例如,您只需单击一个按钮,即可通过漂亮的 Web GUI 激活和停用 PHP 扩展。
You don't need Zend Server, especially if you're fine with setting up your own environment. On the other hand Zend Server is optimized for running Zend Framework based applications. It becomes especially meaningful when you start using Zend Studio too. There is just a smaller probability of there being any kind of issues in your AMP stack.
Apart from that, Zend Server really is a great stack. Much more advanced than all the *AMPs out there. You can for example activate and deactivate PHP extensions through a nice web GUI just by clicking a button.