This article mainly introduces to you the relevant information about the namespace, traits and generators of the new features of PHP. It mainly involves the content of trait (trait) and generator (generator) in php. For trait (trait) in php Students who are interested in generators can refer to it. Hope it helps everyone.
1. Namespace
What is a namespace?
1). Namespace was introduced in PHP 5.3, similar to the function of folders. For example, Request and Response in the Symfony framework are located under the Symfony namespace.
2). The namespace should always be on the line below the
3) The namespace of the PHP file is different from the physical file system of the operating system. This is a virtual concept and does not necessarily correspond to the directory structure of the file system. Nonetheless, most PHP components place subnamespaces into subdirectories of the file system in order to be compatible with the widely used PSR4 autoloading standard.
4). Namespace is just a symbol of the PHP language. The PHP interpreter will add this symbol as a prefix to the names of classes, interfaces, functions and constants.
Why do we need a namespace?
1). Namespace allows the program to run like a sandbox and can be used with code written by other developers. Ensure that your code and projects can be used with the project's third-party dependencies.
Declare namespace
1). The top-level namespace is often used to set the top-level manufacturer name. 2). The manufacturer's namespace must be globally unique. Subnamespaces are not that important, but they help organize the project's code.
Import and alias
1). Starting from PHP5.3, you can import PHP classes, interfaces and other namespaces and create aliases for them. Starting from PHP5.6, you can import PHP functions and constants and create aliases for them.
2). When using the use keyword to import code, there is no need to add a symbol at the beginning, because PHP assumes that the imported namespace is a fully qualified namespace. The use keyword must appear in the global scope, that is, it cannot appear in a class or function, because this keyword is used during compilation. However, the use keyword can be used after the namespace declaration statement to import other namespaces. code.
Starting from PHP5.6 we can import functions and constants.
<?php use func Namespace\functionName; functionName();
Constants can also be imported.
use constant Namespace\CONS_NAME; echo CONS_NAME;
Aliases for functions and constants are created in the same way as class names.
Best Practice
1).PHP allows multiple namespaces to be defined in one PHP file. But doing so can be confusing and goes against the good practice of one file per class. 2). When referencing the code of the global namespace in a namespace, a prefix needs to be added to tell PHP that it needs to find the class globally, such as PHP's native exception class.
Auto-loading
1). The namespace lays a solid foundation for the PSR4 autoloader developed by PHP-FIG.
2. Use the interface
1). Just like I can choose to drive a different car. Because they all have steering wheels, accelerators and brakes, and the fuel is gasoline.
3. Traits
1). Shape is a partial implementation of a class (constants, properties and methods), which can be mixed into one or more existing PHP classes. Traits have two functions , indicates what a class can do (similar to an interface), and provides modular practices (similar to a class).
2). Traits allow two unrelated classes to use the same attributes and methods.
3).The PHP interpreter will copy and paste the properties into the definition body of the class.
4. Create a generator
1) Use the yield keyword once or multiple times in an ordinary function without returning a value, but only generating a value. This function is a generator. For example:
<?php function myGenerator() { yield 'value1'; yield 'value2'; }
When calling the generator function, PHP will return an object belonging to the Generator class. This object can be iterated using the foreach() function. For each iteration, PHP will ask for an instance of this object to calculate and provide The next value to be iterated over. The elegance of the generator is that after each value is produced, the internal state of the generator will continue to switch between pause and recovery until the end of the definition body is reached or an empty return; statement is encountered. , for example:
<?php foreach (myGenerator() as $yieldedValue) { echo $yieldedValue, PHP_EOL; }
The above example will output
value1 value2
2). How does the generator save memory? Generate a range of values (wrong way)
function makeRange($length) { $dataset = []; for ($i=0; $i <p>Create an array containing a large integer in advance, and then look at the example of using the generator. </p><pre class="brush:php;toolbar:false">function makeRange($length) { for ($i = 0; $i <p>In practical functions such as iterating a 4GB file, iterators come into play. </p><pre class="brush:php;toolbar:false">function getRows($file) { $handle = fopen($file, 'rb'); if ($handle === false) { throw new Exception(); } //feof()函数检测是否到达文件末尾 while (feof($handle) === false) { //fgetcsv()一次读取csv文件的一行 yield fgetcsv($handle); } fclose($handle) } foreach (getRows('data.csv') as $row) { print_r($row); }
3). The generator does not add new functions to PHP. It needs to implement fast forward, rewind and search in the data set. It is best to write your own class to implement the Iterator interface, or use something in the PHP standard library. a native iterator.
Related recommendations:
Detailed explanation of php namespace usage
Detailed examples of how to use PHP namespaces
Introduction to PHP namespaces, traits and generators
The above is the detailed content of Detailed explanation of PHP namespaces, traits and generators. For more information, please follow other related articles on the PHP Chinese website!

What’s still popular is the ease of use, flexibility and a strong ecosystem. 1) Ease of use and simple syntax make it the first choice for beginners. 2) Closely integrated with web development, excellent interaction with HTTP requests and database. 3) The huge ecosystem provides a wealth of tools and libraries. 4) Active community and open source nature adapts them to new needs and technology trends.

PHP and Python are both high-level programming languages that are widely used in web development, data processing and automation tasks. 1.PHP is often used to build dynamic websites and content management systems, while Python is often used to build web frameworks and data science. 2.PHP uses echo to output content, Python uses print. 3. Both support object-oriented programming, but the syntax and keywords are different. 4. PHP supports weak type conversion, while Python is more stringent. 5. PHP performance optimization includes using OPcache and asynchronous programming, while Python uses cProfile and asynchronous programming.

PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.

PHP originated in 1994 and was developed by RasmusLerdorf. It was originally used to track website visitors and gradually evolved into a server-side scripting language and was widely used in web development. Python was developed by Guidovan Rossum in the late 1980s and was first released in 1991. It emphasizes code readability and simplicity, and is suitable for scientific computing, data analysis and other fields.

PHP is suitable for web development and rapid prototyping, and Python is suitable for data science and machine learning. 1.PHP is used for dynamic web development, with simple syntax and suitable for rapid development. 2. Python has concise syntax, is suitable for multiple fields, and has a strong library ecosystem.

PHP remains important in the modernization process because it supports a large number of websites and applications and adapts to development needs through frameworks. 1.PHP7 improves performance and introduces new features. 2. Modern frameworks such as Laravel, Symfony and CodeIgniter simplify development and improve code quality. 3. Performance optimization and best practices further improve application efficiency.

PHPhassignificantlyimpactedwebdevelopmentandextendsbeyondit.1)ItpowersmajorplatformslikeWordPressandexcelsindatabaseinteractions.2)PHP'sadaptabilityallowsittoscaleforlargeapplicationsusingframeworkslikeLaravel.3)Beyondweb,PHPisusedincommand-linescrip

PHP type prompts to improve code quality and readability. 1) Scalar type tips: Since PHP7.0, basic data types are allowed to be specified in function parameters, such as int, float, etc. 2) Return type prompt: Ensure the consistency of the function return value type. 3) Union type prompt: Since PHP8.0, multiple types are allowed to be specified in function parameters or return values. 4) Nullable type prompt: Allows to include null values and handle functions that may return null values.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

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

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

Atom editor mac version download
The most popular open source editor

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

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.

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment