


- 2.1 Namespace:
- To avoid conflicts, put it on the first line after
- Reference namespace: use namespace Symphony/HttpFoundation;
- Declare namespace: namespace Oreilly;
- Reference a class in the namespace: use Oreilly/con as a;
- Reference a function in the namespace: use func Oreilly/functionName;
- Reference a constant in the namespace: user constant Rreilly + Bar{}
-
Global namespace: code without a namespace, such as PHP's native Exception class, the previous access can tell PHP not to search in the current namespace, but to search in the global space ,$e = new Exception()
-
Fully qualified php class name: (namespace + class name)
- 2.2 Using interface
- Interface definition: interface Documentable{
public function getId ();
-
Fully qualified php class name: (namespace + class name)
- public function getContent();
- }
- Interface implementation: class HtmlDocument implements Documentable{
-
- public function _construct(){}
- public function getId (){
- return $this->url;
} -
- public function getContent(){}
-
}
- 2. 3 traits trait
- The reason for using traits is that two classes need very similar functional structures. If implemented through inheritance, it will destroy the original class hierarchy. If implemented using interfaces, it will lead to code duplication, so traits are introduced
-
Define traits: trait MyTrait{
- // Trait implementation
- }
-
Trait usage: class MyClass{
- use MyTrait;
- }
- 2.4 Generator, iterator
- The generator is a php function and uses the yield keyword. The generator does not return a value, only outputs a value, and can only move forward iterator , suitable for iterating large data sets.
-
How to create a generator: function myGenerator(){
- yield 'value1';
- yield 'value2'; Usage of generator : PHP returns an object of the Generator class, which is beneficial to saving memory. For example, if you need to generate an integer in the range of 10,000, one way is to create 10,000 integers in memory, and use generator iteration, which only takes up the memory of one integer each time. That’s it.
- foreach(myGenerator() as $yieldValue){
- echo $yieldValue;//Output value1, value2
-
}
- 2.5 Closures and anonymous functions
- Closure: A function that encapsulates the surrounding state when it is created. Even if the environment where the closure is located no longer exists, the state encapsulated in the closure still exists
Anonymous function: A function without a name that can be paid to a variable - Closures and anonymous functions are actually objects, instances of the Closure type
- 2.6 Creating closures
- As long as there is ( after the variable name, php will look for the _invoke() method. Before there is no closure, php can only Make a named callback
- $numbersPlusOne
- = array_map
-
(
- function
-
($number) { return $number
+ 1
- ;
- }, [1,2 ,
- 3]); print_r($numbersPlusOne); // Output
-->
- [2, 3, 4] The additional status of the closure: bindto () Living USE keywords Use use keywords: function enclosePerson($name ) {
-
($number) { return $number
+ 1
-
return function
- (
-
$doCommand)
use ($name
- ) { //
-
encapsulates the name parameterreturn sprintf('%s, %s',
$name,
- $doCommand
- ); }; } Use bindTo() method to attach Closure status:
$ this - -> routes
[ -
encapsulates the name parameterreturn sprintf('%s, %s',
$name,
- $routePath ]
-
=
- $routeCallback
- ->bindTo($this,__CLASS__);The second parameter is to bind this closure object type 2.7 Bytecode cache Zend OPcache2.8PHP built-in server
- php -S localhost:4000
-
$doCommand)
use ($name
- Server configuration: php -S localhost:4000 -c app/config/php.ini
- Since the built-in server does not have .htaccess files, it does not support many PHP framework, use the built-in routing script instead
php -S localhost:4000 router.php
The above has introduced the characteristics of PHP learning - chapter 2 of PHP, including chapter and PHP learning content. I hope it will be helpful to friends who are interested in PHP tutorials.
-
Define traits: trait MyTrait{

随着互联网的发展,动态网页的需求越来越大。而PHP作为一种主流的编程语言,被广泛应用于Web开发中。那么,对于初学者来说,如何学习PHP开发呢?一、了解PHP的基础知识PHP是一种脚本语言,可以直接嵌入HTML代码中,通过Web服务器进行解析运行。因此,在学习PHP之前,可以先了解HTML、CSS、JavaScript等前端技术基础,以便更好地理解PHP的作

PHP学习笔记:网络爬虫与数据采集引言:网络爬虫是一种自动从互联网上抓取数据的工具,它可以模拟人的行为,浏览网页并收集所需的数据。PHP作为一种流行的服务器端脚本语言,在网络爬虫和数据采集领域也发挥了重要的作用。本文将介绍如何使用PHP编写网络爬虫,并提供实际的代码示例。一、网络爬虫的基本原理网络爬虫的基本原理是通过发送HTTP请求,接收并解析服务器响应的H

PHP学习笔记:模块化开发与代码复用引言:在软件开发中,模块化开发与代码复用是相当重要的概念。模块化开发可以将复杂的系统分解成可管理的小模块,提高开发效率和代码可维护性;而代码复用则可以减少冗余代码,提高代码的重用性。在PHP开发中,我们可以通过一些技术手段来实现模块化开发和代码复用。本篇文章将介绍一些常用的技术和具体代码示例,帮助读者更好地理解和应用这些概

PHP学习笔记:性能分析与调优引言:在Web开发中,性能是一个非常关键的因素。一个高性能的网站能够提供更好的用户体验,提高用户留存率,增加业务收入。而在PHP开发中,性能的优化是一个常见且重要的问题。本文将介绍PHP中性能分析与调优的方法,并提供具体的代码示例,帮助读者更好地理解和运用这些技巧。一、性能分析的工具Xdebug扩展Xdebug是一款功能强大的P

2023年,学习PHP的最佳途径是什么?随着互联网的快速发展,计算机编程成为了一项具有极高就业前景的技能。而在众多的编程语言中,PHP是一门被广泛应用于网络开发的语言。想要学习PHP,了解最佳的学习途径是非常重要的。PHP是一种开源的、服务器端脚本语言,它被用于开发动态网站和应用程序。相比于其他语言,PHP具有较低的学习曲线和广泛的应用领域,使其成为初学者的

PHP学习笔记:表单处理与数据验证在网页开发中,表单是用户与网站进行交互的重要组件之一。当用户在网站上填写表单并提交数据时,网站需要对提交的数据进行处理和验证,确保数据的准确性和安全性。本文将介绍如何使用PHP来处理表单和进行数据验证,并提供具体的代码示例。表单提交和数据预处理在HTML中,我们需要使用<form>标签来创建一个表单,并指定表单的

PHP学习笔记:前后端分离与API设计概述:随着互联网的不断发展和用户需求的不断增加,前后端分离的开发模式越来越受到开发者的重视。前后端分离是指将前端和后端的开发分离开来,通过API进行数据交互,实现开发的高效性和灵活性。本文将介绍前后端分离的概念,以及如何设计API。前后端分离的概念:传统的Web开发模式是前后端耦合的,即前端和后端的开发是在同一个项目中进

学习PHP中的视频特效和滤镜处理函数方法PHP是一种强大的编程语言,广泛应用于Web开发领域。随着网站设计的发展,视频特效和滤镜处理越来越受欢迎。本文将介绍如何使用PHP实现视频特效和滤镜处理,以及一些常用的函数方法。一、安装ffmpeg扩展要处理视频,我们需要安装ffmpeg扩展。通过该扩展,我们可以在PHP中直接调用ffmpeg命令进行视频处理。安装过程


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

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

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.

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

WebStorm Mac version
Useful JavaScript development tools

Atom editor mac version download
The most popular open source editor

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment
