search
HomeBackend DevelopmentPHP Tutorial zen-cart和Ecshop,该怎么解决

zen-cart和Ecshop
哪位朋友熟悉这两个开源项目,介绍介绍两个有什么区别。

------解决方案--------------------
个人推荐ECSHOP

区别如下
zencart是国外开发的,面向的客户是全球,支持多种货币,信用卡等,是按模块开发的思想,版权比较开放,可以自己随意修改。
缺点是代码可读性不高,结构复杂,上手较慢,如果一味的最求模块化开发的思想,会更慢。在图片的存储方面未做优化,缓存方面比较差。对于一个长期运行的电子商务网站来说后期会逐渐臃肿。

ecshop 是国内的,面向的主要是中国用户,代码注释等都是中文,且易理解,非常容易上手。个别计划任务和模块也可以开发,而且多多模板支持的很好。缓存和数据库读取方面效率很高。界面很友好。但是版权比较严格,一般不允许你作为商业目的二次开发。
------解决方案--------------------
不懂,帮顶
------解决方案--------------------
不懂,帮顶
------解决方案--------------------
不懂,帮顶
------解决方案--------------------
zencart的代码确实可读性比较差
 
不用zend studio找个变量就会让你找半天
------解决方案--------------------
zencart 开源免费,社区支持也不错,就是英语资料多一些
------解决方案--------------------
PHP新手学习来了。
------解决方案--------------------

探讨

引用:

个人推荐ECSHOP

区别如下
zencart是国外开发的,面向的客户是全球,支持多种货币,信用卡等,是按模块开发的思想,版权比较开放,可以自己随意修改。
缺点是代码可读性不高,结构复杂,上手较慢,如果一味的最求模块化开发的思想,会更慢。在图片的存储方面未做优化,缓存方面比较差。对于一个长期运行的电子商务网站来说后期会逐渐臃肿。

ecs……

------解决方案--------------------
ecshop的代码风格,我比较喜欢。也比较容易上手。zen cart,代码确实比较难懂,花的时间肯定要多一些。社区肯定还是ecshop的热。
------解决方案--------------------
看自己的需求而定吧

如果自己需要功能强大,社区支持好一些,自己能力比较不错,可以用zen cart; 

ecshop也非常不错。
------解决方案--------------------
ding
------解决方案--------------------
路过学习一下
------解决方案--------------------
探讨
引用:

个人推荐ECSHOP

区别如下
zencart是国外开发的,面向的客户是全球,支持多种货币,信用卡等,是按模块开发的思想,版权比较开放,可以自己随意修改。
缺点是代码可读性不高,结构复杂,上手较慢,如果一味的最求模块化开发的思想,会更慢。在图片的存储方面未做优化,缓存方面比较差。对于一个长期运行的电子商务网站来说后期会逐渐臃肿。

ecsh……

------解决方案--------------------
请参考一下连接(精彩内容一瞬间呈现)
http://d1ba.com/node/52
http://hi.baidu.com/angellove0219/blog/item/70a93e884d4bf19ea5c27208.html
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
PHP Performance Tuning for High Traffic WebsitesPHP Performance Tuning for High Traffic WebsitesMay 14, 2025 am 12:13 AM

ThesecrettokeepingaPHP-poweredwebsiterunningsmoothlyunderheavyloadinvolvesseveralkeystrategies:1)ImplementopcodecachingwithOPcachetoreducescriptexecutiontime,2)UsedatabasequerycachingwithRedistolessendatabaseload,3)LeverageCDNslikeCloudflareforservin

Dependency Injection in PHP: Code Examples for BeginnersDependency Injection in PHP: Code Examples for BeginnersMay 14, 2025 am 12:08 AM

You should care about DependencyInjection(DI) because it makes your code clearer and easier to maintain. 1) DI makes it more modular by decoupling classes, 2) improves the convenience of testing and code flexibility, 3) Use DI containers to manage complex dependencies, but pay attention to performance impact and circular dependencies, 4) The best practice is to rely on abstract interfaces to achieve loose coupling.

PHP Performance: is it possible to optimize the application?PHP Performance: is it possible to optimize the application?May 14, 2025 am 12:04 AM

Yes,optimizingaPHPapplicationispossibleandessential.1)ImplementcachingusingAPCutoreducedatabaseload.2)Optimizedatabaseswithindexing,efficientqueries,andconnectionpooling.3)Enhancecodewithbuilt-infunctions,avoidingglobalvariables,andusingopcodecaching

PHP Performance Optimization: The Ultimate GuidePHP Performance Optimization: The Ultimate GuideMay 14, 2025 am 12:02 AM

ThekeystrategiestosignificantlyboostPHPapplicationperformanceare:1)UseopcodecachinglikeOPcachetoreduceexecutiontime,2)Optimizedatabaseinteractionswithpreparedstatementsandproperindexing,3)ConfigurewebserverslikeNginxwithPHP-FPMforbetterperformance,4)

PHP Dependency Injection Container: A Quick StartPHP Dependency Injection Container: A Quick StartMay 13, 2025 am 12:11 AM

APHPDependencyInjectionContainerisatoolthatmanagesclassdependencies,enhancingcodemodularity,testability,andmaintainability.Itactsasacentralhubforcreatingandinjectingdependencies,thusreducingtightcouplingandeasingunittesting.

Dependency Injection vs. Service Locator in PHPDependency Injection vs. Service Locator in PHPMay 13, 2025 am 12:10 AM

Select DependencyInjection (DI) for large applications, ServiceLocator is suitable for small projects or prototypes. 1) DI improves the testability and modularity of the code through constructor injection. 2) ServiceLocator obtains services through center registration, which is convenient but may lead to an increase in code coupling.

PHP performance optimization strategies.PHP performance optimization strategies.May 13, 2025 am 12:06 AM

PHPapplicationscanbeoptimizedforspeedandefficiencyby:1)enablingopcacheinphp.ini,2)usingpreparedstatementswithPDOfordatabasequeries,3)replacingloopswitharray_filterandarray_mapfordataprocessing,4)configuringNginxasareverseproxy,5)implementingcachingwi

PHP Email Validation: Ensuring Emails Are Sent CorrectlyPHP Email Validation: Ensuring Emails Are Sent CorrectlyMay 13, 2025 am 12:06 AM

PHPemailvalidationinvolvesthreesteps:1)Formatvalidationusingregularexpressionstochecktheemailformat;2)DNSvalidationtoensurethedomainhasavalidMXrecord;3)SMTPvalidation,themostthoroughmethod,whichchecksifthemailboxexistsbyconnectingtotheSMTPserver.Impl

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools