search
HomeBackend DevelopmentPHP TutorialWhat you should know when writing PHP now
What you should know when writing PHP nowJan 17, 2017 am 09:48 AM
Getting started with phpphp basic knowledge

First of all, you should be using PHP 5.3 or above. If the PHP version is below this, it is time to upgrade. I recommend using the latest version if possible.

You should have read PHP The Right Way. This article contains a lot of content and can be expanded. You need to know most of the terms and concepts.

1. PSR

The idea behind the group is for project representatives to talk about the commonalities between our projects and find ways we can work together.

I have mentioned PSR (PHP Standard Recommendation) many times in previous articles and during discussions with colleagues. Many people think that PSR only does insignificant things such as standardizing coding style, but it is actually much more than that.

PSR's series of standard documents are drafted and voted on by php-fig (PHP Framework Interop Group). Among the voting members are authors of some mainstream frameworks and extensions, including Laravel, Symfony, Yii, etc.

According to its official website, the purpose of this organization is not to tell you what you should do, but to negotiate and agree with each other among some mainstream frameworks. But I believe that you will always use these frameworks and extensions.

PSR has currently approved 6 documents:

0: Automatic loading (mainly for versions without namespaces before PHP 5.3)

1: Coding specifications

2: Coding style recommendations

3: Log results

4: Automatic loading is more detailed (there is a big change after the namespace appears)

7 :HTTP message interface

Currently in draft, there are PSR-5 (PHPDoc Standard), PSR-6 (Cache), etc. 5 and 6 are not on the list above because they have not yet been voted on.

I believe that as the standards continue to be updated, you will find that studying these conventions is also very beneficial to you, although you may not necessarily abide by everything.

Nobody in the group wants to tell you, as a programmer, how to build your application.

2. Composer

Composer is a tool for dependency management in PHP. It allows you to declare the libraries your project depends on and it will manage (install/update) them for you.

composer is different from Pear and Pecl. It is not only used for Installing extensions, and more importantly, defines a method for implementing and managing extensions in a modern PHP framework. Similar to npm of node.js and pip of Python, but does more than the above. The core of composer is to implement standard installation of extensions and automatic loading of classes. Through the packagist.org platform, countless extension components can be easily introduced. Currently, the more well-known PHP extensions can be installed through composer. The call only needs to load an autoload.php file. Composer registers an automatic loading method through the spl_autoload_register method to load extension classes and files. Of course, Composer also made an optimization during this process. We all know that PHP imports files through include and require, which is actually not good-looking to write. PHP 5.3 provides namespaces, which have nothing to do with file import. However, composer implements PSR-4 (PSR-0 on older versions of PHP). When using use, the method implemented by calling spl_autoload_register loads the required classes when calling. The writing method is similar to Python's import, which is both beautiful and functional. It comes to the role of on-demand loading and lazy loading.

3. php-cs-fixer

The PHP Coding Standards Fixer tool fixes most issues in your code when you want to follow the PHP coding standards as defined in the PSR-1 and PSR-2 documents.

The function of this tool is to format your code according to PSR-1 and PSR-2 specifications, and some optional coding styles are Symfony specifications.

This is actually not worth talking about originally. I just recently saw .php_cs files in several open source frameworks. I was curious and found out about this project after further research. Some people may think that there is no need to worry about coding style. I can't tell you the benefits. If you think programming is more than just a job, then it's like cleaning your room. A dirty room won't affect your eating and sleeping, but a clean one will look more comfortable. If you want to cooperate with others, then this matter is even more important.

4. PsySH

A runtime developer console, interactive debugger and REPL for PHP.

PsySH is an interactive runtime for PHP similar to Python's IDLE environment. I discovered this in Laravel, and the function of artisan tinker in Laravel 5 is implemented through it. Laravel 4 uses another project: boris.

This is mainly useful when testing some simple functions and features of PHP. If you encounter some uncertain things, such as the use of empty, you can use it to do some testing.

5. Some frameworks and components

Framework

What I prefer is Laravel. Currently, the company is using Yii2. I am concerned about Symfony and Phalcon (implemented in C language). What to use and what not to use mainly comes down to preference, and sometimes you can’t help but make your own choice, but it’s not a bad idea to do some research and learn more about it.

When mentioning Laravel, many people will immediately think of Ruby on Rails. I think imitating or plagiarizing is not the main purpose. The main purpose is to provide developers with a better tool. Fortunately, Laravel has a different routing control (without Action suffix or prefix), a useful ORM (Eloquent), a useful template engine (Blade), or a relatively good-looking document ( If the community sees it) etc.

Powerful is sometimes criticized for being huge, but this is because you need to understand the mid- and long-term planning of your project, the current size of the project, and the future size and carrying capacity.

The core implementation of Larval is a container (Container) and PHP's reflection class (ReflectionClass) (the same is true for Yii 2). To understand this, while reading more articles and documents, you can also look at the source code.

Symfony 2 provides many components. http-kernel and http-foundation are also inherited and used directly in Laravel. It is worth knowing and learning.

CodeIgniter is a small but powerful framework. Although CI is not developed using Composer components, versions later than 3.0 also add support for Composer (this is nothing more than adding an additional vendor directory and introducing autoload.php files).

ORM

ORM or Active Record I think is still needed. Some people may think that PHP is just a template engine and SQL should be written by hand. Don't be bothered by these words.

The implementation of Active Record in CodeIgniter is very lightweight, but for the size of CI itself, it is already very useful.

I like Eloquent implemented by Laravel very much, and it can also be integrated into other projects. Symfony 2 uses Doctrine, and this project is also worthy of attention. Yii 2 also has its own set of implementation methods.

Template engine

The template engine needs to do three things:

1. Output of variable values ​​(echo),

2. Conditional judgment and looping (if...else, for, foreach, while)

3. Introduced or inherited from other files

The Blade implemented by Laravel is a relatively lightweight and easy-to-use template engine. However, it is currently not very easy to introduce it into other frameworks. When I was free, I tried to introduce it into Yii 2. Now it is just a simple implementation. I hope to extract the parsing part of Blade separately and make a lightweight implementation later. A search on Github found someone doing the same thing.

Yii 2 seems to be more recommended to use native PHP to write, but it also provides extensions that support Smarty and Twig. Symfony 2 uses Twig. Twig and Symfony, as well as the php-cs-fixer mentioned above, are all works of SensioLabs.

Smarty is an old and tenacious template engine. To be honest, I don't like it very much. Its syntax is too complicated, and things like variable assignment have their own set of methods. The current version uses Lexer to parse files, which feels like another language implemented in PHP. There are also some regular expressions that are too long and implementations that are too complex in the project. I think this is a very dangerous and error-prone thing.

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入门指南:文件上传和下载May 22, 2023 am 10:51 AM

在Web开发中,文件的上传和下载是一个非常常见的需求。无论是用户上传头像、文档,还是管理员让用户下载某个文件,都需要用到这个功能。而PHP作为一个强大的服务器端语言,自然也提供了强大的文件操作函数和类库,让我们可以轻松实现文件上传和下载功能。本篇文章将介绍PHP中实现文件上传和下载的基本流程和常用函数,并提供示例代码。如果你是PHP初学者或者正在学习文件操作

前端开发者需了解的PHP相关知识前端开发者需了解的PHP相关知识Mar 29, 2024 pm 03:09 PM

作为前端开发者,对于PHP的了解是非常有必要的。虽然PHP是一种后端开发语言,但是掌握一定的PHP知识可以帮助前端开发者更好地理解整个web开发的过程,提高工作效率并与后端开发者更好地协作。在这篇文章中,我们将讨论前端开发者需要了解的一些PHP相关知识,并提供具体的代码示例。PHP是什么?PHP(HypertextPreprocessor)是一种服务器

PHP入门指南:TCP/IP编程PHP入门指南:TCP/IP编程May 20, 2023 pm 09:31 PM

PHP作为一个流行的服务器端脚本语言,它不仅可以用于Web应用程序的开发,还可以用于进行TCP/IP编程以及网络编程。在本文中,我们将为您介绍TCP/IP编程的基础知识和如何使用PHP进行TCP/IP编程。一、TCP/IP编程的基础知识TCP/IP协议是Internet上进行通信的标准协议,它是由TCP协议和IP协议两个部分组成的。TCP协议负责建立可靠连接

PHP中的新手入门指南PHP中的新手入门指南May 25, 2023 am 08:03 AM

PHP是一门热门的前端编程语言,它功能强大、易学易用,被广泛用于网站的开发和维护中。对于初学者来说,PHP入门需要一定的学习和掌握,下面就为大家提供一些PHP中的新手入门指南。一、学习基本概念在学习PHP之前,你需要了解一些基本概念。PHP是一种向Web服务器发出指令的脚本语言。简单来说,你可以使用PHP来生成HTML代码并将其发送给浏览器,最终呈现在网页上

PHP入门指南:JSON扩展PHP入门指南:JSON扩展May 20, 2023 am 08:37 AM

PHP是一门广泛使用的编程语言,尤其在Web开发中,PHP占据着重要的地位。其中,JSON是一种常见的数据格式,它可以用于存储和传输数据。PHP中提供了JSON扩展,方便开发人员对JSON数据进行操作和处理。本文将介绍JSON扩展的基本用法和应用场景。一、JSON扩展基本用法将JSON字符串转化为PHP对象或数组PHP中的json_decode()函数可以将

PHP入门指南:PHP基础语法PHP入门指南:PHP基础语法May 20, 2023 am 08:39 AM

PHP是一种服务器端脚本语言,它被用来开发动态网站、Web应用程序和网页程序。PHP的应用范围非常广泛,无论是初学者还是有经验的开发人员,都可以从中获益。本文将为您提供PHP的基础语法入门指南。如果您想学习PHP编程,并且从头开始打好基础,那么您来对了地方。PHP的基本结构一个PHP程序包含以下三个部分:<?php//PHP代码?>代码两边的&

PHP入门指南:一些常见的HTTP状态码PHP入门指南:一些常见的HTTP状态码May 21, 2023 am 08:15 AM

对于PHP初学者来说,了解HTTP状态码是非常重要的。HTTP状态码是指由Web服务器返回的3位数字代码,用于表示客户端请求的处理结果。本篇文章将介绍一些常见的HTTP状态码及其含义,帮助PHP初学者更好地理解网站开发过程中遇到的各种HTTP状态码。200OK200OK是最常见的HTTP状态码之一,表示请求已成功处理并返回结果。当你访问一个网站的时候,如

PHP笔试基础薄弱?试试这些学习方法!PHP笔试基础薄弱?试试这些学习方法!Mar 01, 2024 pm 01:39 PM

PHP作为一种广泛应用于Web开发的脚本语言,已经成为许多互联网公司招聘技术人才时的必备技能之一。然而,对于一些刚入门或者基础薄弱的学习者来说,学习PHP可能会遇到一些困难。在面对PHP笔试时,怎样才能更好地提升自己的基础功力呢?接下来,我们将介绍一些学习方法,希望能够帮助大家提升PHP的基础知识和技能。1.养成阅读PHP官方文档的习惯PHP官方文档是学习

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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment