search
HomeBackend DevelopmentPHP TutorialA first look at PHP5 1_PHP Tutorial
A first look at PHP5 1_PHP TutorialJul 13, 2016 pm 05:24 PM
php5onedownloadexperiencePreliminary explorationreleasedevelopstartussupplyformalVersionNow

Although PHP5 has not yet been officially released (the development version is already available for download), we can now start to experience the surprises that the new version will bring us. In the following introduction, we will focus on the three major features in PHP5. These three major features are: * New Object Mode * Exception handling (Exceptions) * Namespace (Namespace) Before starting, two points should be declared: * In order to illustrate how to operate, some examples in the article use This is just to improve the readability of the article. * There may be some differences between the parts described in the article and the final release version of PHP5. Before PHP5 is finally officially released, you can download the latest compiled version from http://snaps.php.net at any time to experience PHP5 for yourself. Bringing us these brand new features. The objects in the new object model in PHP5 have been adjusted more systematically and comprehensively, and their current appearance may look somewhat similar to Java. This section focuses on the new object mode in PHP5 and gives some simpler examples to illustrate. Let this section be a new starting point for your PHP5 journey. :) * Constructors and destructors * References to objects * Clone of objects * Private, public and protected modes in objects * Interfaces (Interfaces) * Abstract classes * __call * __set and __get * Static member constructors and analysis Constructor In PHP4, when a function has the same name as an object, this function will become the constructor of the object, and there is no concept of a destructor in PHP4. In PHP5, the constructor is uniformly named __construct, and the concept of destructor is introduced, which is uniformly named __destruct. Example 1: Constructor and destructorx = $x; } function display() { print($this->x); } function __destruct() { print("bye bye"); } } $o1 = new foo(4); $o1->display(); ?> In the above example, when you terminate the call to the foo class, its destructor will be called, and "bye bye" will be output in the above example .As we all know, object references, in PHP4, passing a variable to a function or method actually makes a copy of the variable, which means that what you pass to the function or method is a copy of the variable, unless you use a reference. The symbol "&" is used to declare that a reference is to be made, not a copy. In PHP5, objects always exist in the form of references, and assignment operations in objects are also reference operations. Example 2: Object reference x = $x; } function getX() { return $this->x; } } $o1 = new foo; $o1->setX(4); $o2 = $o1; $o1->setX(5); if($o1->getX() == $o2->getX()) print("Oh my god!"); ?> Cloning of objects is as described above. When an object What should I do if I want to get a copy of the object when it is always called as a reference? PHP5 provides a new feature, which is object cloning, with the syntax __clone. Example 3: Clone of object x = $x; } function getX() { return $this->x; } } $o1 = new foo; $o1->setX(4); $o2 = $o1- >__clone(); $o1->setX(5); if($o1->getX() != $o2->getX()) print("Copies are independant"); ?> The method of object cloning is in other It exists in many application languages, so you don't have to worry about its stability. :) Private, public and protected modes in objects In PHP4, all methods and variables of an object are public, which means that you can operate any of the variables and methods outside an object. PHP5 introduces three new modes for controlling this access permissions: Public, Protected, and Private. Public mode (Public): allows operation control outside the object. Private mode (Private): Only methods within this object are allowed to operate and control it. Protected mode (Protected): Allows this object and its parent object to operate and control it. Example 4: Private, public and protected modes in objects private_foo(); //Ok because we are in the same class we can call private methods print("Im protected"); } private function private_foo() { $this->x = 3; print("Im private"); } } class foo2 extends foo { public function display() { $this->protected_foo(); $this->public_foo(); // $this- >private_foo(); // Invalid! the function is private in the base class } } $x = new foo(); $x->public_foo(); //$x->protected_foo(); //Invalid cannot call protected methods outside the class and derived classes //$x->private_foo(); //Invalid private methods can only be used inside the class $x2 = new foo2(); $x2->display(); ?> Tips: Variables in objects always exist in private form. Directly operating variables in an object is not a good object-oriented programming habit. A better way is to hand over the variables you want to an object's method for processing. Interfaces As we all know, objects in PHP4 support inheritance. To make an object a derived class of another object, you need to use code similar to "class foo extends parent" to control it. In PHP4 and PHP5, an object can only be inherited once, and multiple inheritance is not supported. However, a new term has emerged in PHP5: interface. An interface is a special object without specific processing code. It only defines the names and parameters of some methods. After that, the object can easily use the implement keyword to add the required information. The interfaces are integrated and then specific execution code is added. Example 5: Interface This is very helpful to improve the readability and popularity of the code. From the above example, we can see that the object foo contains two interfaces, displayable and printable. At this time, we can clearly understand You know that object foo must have a display() method and a print() method. As long as you understand the interface part, you can easily operate the object without caring about how the object works internally. To be continued~~~

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/532172.htmlTechArticleAlthough PHP5 has not been officially released yet (the development version is already available for download), we can start to experience the new version now The version will bring us surprises. In the following introduction, I...
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
php5和php8有什么区别php5和php8有什么区别Sep 25, 2023 pm 01:34 PM

php5和php8的区别在性能、语言结构、类型系统、错误处理、异步编程、标准库函数和安全性等方面。详细介绍:1、性能提升,PHP8相对于PHP5来说在性能方面有了巨大的提升,PHP8引入了JIT编译器,可以对一些高频执行的代码进行编译和优化,从而提高运行速度;2、语言结构改进,PHP8引入了一些新的语言结构和功能,PHP8支持命名参数,允许开发者通过参数名而不是参数顺序等等。

PHP8.1发布:引入curl多个请求并发处理PHP8.1发布:引入curl多个请求并发处理Jul 08, 2023 pm 09:13 PM

PHP8.1发布:引入curl多个请求并发处理近日,PHP官方发布了最新版本的PHP8.1,其中引入了一个重要的特性:curl多个请求并发处理。这个新特性为开发者提供了一个更加高效和灵活的方式来处理多个HTTP请求,极大地提升了性能和用户体验。在以往的版本中,处理多个请求往往需要通过创建多个curl资源,并使用循环来分别发送和接收数据。这种方式虽然能够实现目

全国首个DNA存储模型"ChatDNA"亮相发布全国首个DNA存储模型"ChatDNA"亮相发布May 29, 2023 pm 06:31 PM

5月22日消息,今天的中国日期。在浙江嘉善举办的祥符创新论坛转化医学产业高峰论坛取得了圆满成功。据ITBEAR科技资讯了解,该论坛旨在围绕精准医学及生命科学前沿热点问题展开讨论,并分享最新的诊断技术、基因测序等前沿领域的进展,以推动医学产业的健康发展。与会专家汇聚一堂,分享实践经验和创新思路。论坛期间,还举行了重磅发布和联盟签约仪式。上海人工智能研究院、祥符实验室以及转化医学国家科学中心(上海)联合发布了全国首个DNA存储领域预训练大模型——"ChatDNA"。该模型的发布将

入门Java爬虫:认识其基本概念和应用方法入门Java爬虫:认识其基本概念和应用方法Jan 10, 2024 pm 07:42 PM

Java爬虫初探:了解它的基本概念与用途,需要具体代码示例随着互联网的快速发展,获取并处理大量的数据成为企业和个人不可或缺的一项任务。而爬虫(WebScraping)作为一种自动化的数据获取方法,不仅能够快速地收集互联网上的数据,还能够对大量的数据进行分析和处理。在许多数据挖掘和信息检索项目中,爬虫已经成为一种非常重要的工具。本文将介绍Java爬虫的基本概

php5如何改80端口php5如何改80端口Jul 24, 2023 pm 04:57 PM

php5改80端口的方法:1、编辑Apache服务器的配置文件中的端口号;2、辑PHP的配置文件以确保PHP在新端口上工作;3、重启Apache服务器,PHP应用程序将开始在新的端口上运行。

macOS 文图拉 13.5 测试版 4 发布macOS 文图拉 13.5 测试版 4 发布Jun 29, 2023 pm 12:39 PM

除了为iPhone发布iOS26.6beta4和iPad的iPadOS16.6beta4外,Apple还为Mac发布了macOSVentura13.5beta4。这个新的测试版是在上一个测试版发布两周后发布的。此更新主要包括一系列错误修复和性能改进,它没有任何新功能。由于这是macOSVentura13.5的第四个测试版,因此该软件的最终版本发布应该不会很快,我们预计它将在月的某个时候发布,以前预计在月底之前发布。新的macOS13.5beta4软件现在可供开发人员下载,您可以在Apple网站上

php5没有监听9000端口如何解决php5没有监听9000端口如何解决Jul 10, 2023 pm 04:01 PM

php5没有监听9000端口解决方法步骤:1、检查PHP-FPM配置文件;2、重启PHP-FPM服务;3、关闭防火墙或配置端口转发;4、检查其他进程是否占用9000端口。

iOS 17 测试版 4 和 iPadOS 17 测试版 4 发布给开发者iOS 17 测试版 4 和 iPadOS 17 测试版 4 发布给开发者Jul 28, 2023 pm 03:05 PM

苹果已经发布了适用于iPhone的iOS17beta4和适用于iPad的iPadOS178beta4,这些新的测试版已在上一版本发布两周后发布,现在可供开发人员下载。新的iOS17和iPadOS软件更新将为iPhone和iPad带来一些重大变化,包括各种设计更改,具有改进功能的现有应用程序的更新等等。通过此更新,iPhone即将推出的一些新功能包括新的待机模式,可让您在iPhone以横向模式停靠时将其用作家庭中枢。还有一个新的实时语音邮件功能,当有人为您留下语音邮件时,该功能将实时转录语音邮件,

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 Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

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.

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

mPDF

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),