Home > PHP Framework > Laravel > body text

How to evaluate laravel

(*-*)浩
Release: 2019-06-18 11:48:28
Original
3318 people have browsed it

Laravel is a simple and elegant PHP Web development framework (PHP Web Framework). It can free you from messy codes like noodles; it can help you build a perfect network APP, and every line of code can be concise and expressive.

How to evaluate laravel

Laravel already has an advanced PHP ActiveRecord implementation -- Eloquent ORM. It can easily apply "constraints" to both sides of the relationship, so that you have complete control over the data and enjoy all the conveniences of ActiveRecord. Eloquent natively supports all methods of the query builder (query-builder) in Fluent.

As of January 2, 2017:

Ranked No. 1 PHP project on Github

Ranked No. 1 on Google Trends

No.1 user survey on the programming website Sitepoint

Functional features

1. The syntax is more expressive

You know the following line of code What does "true" mean?

$uri = Url::create('some/uri', array(), array(), true);

laravel php development framework

Also, do you know what the other parameters here mean (except the first one)? Of course you don't know. Because this line of code is not expressive.

Look at this code again:

$url = URL::to_secure('some/uri');

This expression creates a URL using the HTTPS protocol Link, In fact, the above two ways of writing are doing the same thing, but which one is more clear and expressive?

2. High-quality documentation

Laravel has a great community support. The expressiveness and good documentation of the Laravel code itself make PHP programming a pleasure.

3. Rich expansion packages

Bundle is the name for expansion packages in Laravel. It can be anything - as large as a complete ORM, as small as a debug tool, or just copy & paste to install any extension! Laravel's extension packs are contributed by developers from all over the world, and more are constantly being added.

4. Open source and hosted on GITHUB

Laravel is completely open source. All code is available on Github, and you are welcome to contribute.

For more laravel related technical articles, please visit the laravel framework introduction column to learn!

The above is the detailed content of How to evaluate laravel. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
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 [email protected]
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!