KangPHP is a very simple and excellent PHP framework. KangPHP is the preferred framework for small and medium-sized projects. The framework structure is reasonable and clear at a glance. Powerful external class library support, powerful caching system, built-in kangphp template engine, single-entry MVC mode, object-oriented programming. If you are not familiar with the framework concept currently, then KangPHP is your first choice. After learning the framework, you will be better to harness other frameworks.
Function introduction The single-entry MVC pattern is: the architectural pattern of model (M), view (V), and controller (C).
template engine
kangPHP's built-in template tag supports template cache compilation and real-time compilation, supports PHP native statements and can easily expand other template engines
cross-platform
kangPHP not only perfectly supports the LAMP platform but also has excellent support for the WAMP platform. Users don’t have to worry about cross-platform errors at all
Cache support
Users can expand and configure Memcache, Xcache, Redis and other types of cache support
Error self-test
Once a fatal error occurs during the development process, the system will display the specific error line and the cause of the error and store it in the cache log.
multi-level classification tree
When developing projects, commonly used classification trees such as column classification
Modules call each other
Maybe module A and module B call each other when you develop, then KangPHP can meet your needs.
Image processing library
Supports verification codes, thumbnails, and image watermarks
Cross-class function
In actual projects, you can call it through $this->FunctionName(); or through ClassName::FunctionName();
Upload class
Supports single upload and multiple uploads. You can define the upload directory, upload file type, size, random file name, etc.
Pagination class
You can implement multi-style paging with just a short code. The framework provides 2 paging styles by default.
Kind tips
These functions of KangPHP are nothing! Extensibility is the highlight of the framework. I decide the framework!