search
HomeheadlinesRecommended frameworks necessary for PHP development in 2017
Recommended frameworks necessary for PHP development in 2017Jun 17, 2017 pm 04:40 PM
phpdevelopEssentialrecommendframe

I believe that most beginners are like the editor. In the process of later learning PHP, they often struggle with which framework they should learn is more useful? Make your future work more convenient. ​

The editor below recommends the following types to everyone, which are currently efficient frameworks for PHP development used by most Internet companies!

1. Project name: Multifunctional THinkPHP open source framework

project Introduction: In the process of using THinkPHP to develop projects, integrate some commonly used functions or third-party SDKs and provide open source Dear friends, please refer to Auth Permission Management, Alipay, WeChat Pay, Alibaba oss, Umeng Push, Rongyun Instant Messaging, Cloud Communication SMS, Email, Excel, PDF, etc. These have been tested by online operations and are non-toxic and can be used with confidence for free. As long as they don't come to me one day and say that they have caused hundreds of millions of losses because of borrowing some methods from this open source product, just ask me to take responsibility and compensate for it ~  ̄へ ̄ !

This open source product is open to all THinkPHP development users, because my basic idea is not to change the source files of the framework, but just expand around the framework, so these integrated functions can be painlessly compatible with various environments, both Follow the article to easily transplant these integrated functions into your existing projects, or you can directly develop based on this project.

Recommended tutorial: "php.cn Dugu Jiujian (5) - ThinkPHP5 video tutorial"

2. Project name: Laravel-based lightweight web deployment system Fixhub

Recommended frameworks necessary for PHP development in 2017

Project Introduction: Fixhub is a free, open source, web automatic deployment system developed based on the Laravel 5.3 framework. The functions currently implemented mainly include:

Support the release of PHP, Python, JAVA, Ruby and other projects.

Deploy the program to multiple servers via SSH.

Clone the project code directly from the Git repository and package and install it.

Execute the remote server bash command.

Real-time tracking of project deployment status through Websocket.

Keep retrospective version records on the server for quick rollback.

Project health check through task plan.

Deployment can be triggered through webhook.

Online order application and review process.

Slack and email notifications.

Recommended tutorial: Laravel5.2 blog practical video tutorial

3. Project name: Based on Yii Framework collaborative office management system IBOS

Project introduction: IBOS is a PHP-based Development, Yii framework, free and open source, fast and efficient collaborative office management system. The latest IBOS provides strong support for collaborative office application development. These supports include:

Complex user organization structure management support.

Flexible and complete role permission control system, permission granularity supports permission settings to methods.

Practical functions and complete plug-in mechanism.

Modular functional application mechanism, individual applications can be installed and uninstalled independently.

Cloud platform support provides the choice of dual support for the Sina SAE platform and the local environment. It is "spanning" and "smooth" and supports localized development and debugging as well as deployment switching.

Cache support provides various types of cache support including files, databases, Memcache, Xcache, Redis, etc.

Recommended tutorial: Yii development large mall project video tutorial

4. Project name: CMS based on CodeIgniter framework

Project introduction: Rookie CMS is developed with CodeIgniter + bootstrap2.0 A general management backend for personnel, it depends on whether it can be applied to your own project. Its main functions include:

Permission module

Member module

Article module

Slideshow module

Category module

Cache module

Log module

System settings

Recommended tutorial: CI framework video tutorial

5. Project name: CMF system developed based on zend

Project Introduction: This project is a CMF system developed based on zend framework 1.12.3.

An app-based CMF system built without changing the zend framework code.

Comes with backend and installed modules.

Cache the ini configuration file of zend framework, which greatly improves the running speed of zend framework.

Cleverly use the layout and view modules of zend framework, so that each app module can use the global layout for layout, or the app module’s customized layout (by default, the app module does not define a layout layout and will use global layout).

The database can enable the read-write separation function through definition. By configuring the ini file, it can be easily divided into sub-databases, and the functions between each sub-database can be seamlessly called.

Each app module contains a library, and the libray libraries of each app module can call each other. libray is divided into three layers: dao, service, and tool, which is very convenient for future expansion.

Class library implementationAutomatic loading, no need to include it specially.

There are many other functions, which are suitable for beginners to learn zend framework and for advanced developers to use in projects.

Recommended tutorial: Zend Framework database operation skills summary

6. Project name: Content management based on phalcon development System

Project Introduction:This project is a content management system developed based on Phalcon. Features:

Inherits the full functionality of the Phalcon framework.

Multiple website support, user files on different sites, and private/shared website isolation on the same website.

Powerful personalized environment, each user can personalize the website content and presentation.

A permission control system based on user roles, modules, and roles. Of course, you can also perform more precise control through callback functions. The on-site search system provided by

natively supports full-text search.

Use volt to write theme templates, similar to twig syntax, which is more efficient than twig alone.

The entity management, field management, form management, model management and other mechanisms provided by Tolowan can greatly reduce the difficulty and time required for secondary development.


The above is a few popular frameworks recommended by the editor for everyone in 2017. Children, hurry up and learn!

It is not easy to code small characters, the writing is not good, I hope you can understand~

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怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)