search
HomeBackend DevelopmentPHP TutorialPHP sharing about object-oriented programming examples

PHP sharing about object-oriented programming examples

Feb 22, 2018 pm 02:13 PM
phpExampleprogramming

<?php/**
 * PHP面向对象编程简单实例
 */date_default_timezone_set("PRC");/*

* 1.静态属性用于保存类的公有数据

* 2.静态方法里面只能访问静态属性

* 3.静态成员不需要实例化对象就可以进行访问

* 4.类的内部可以通过self或者static关键字访问自身静态成员

* 5.可以通过parent关键字访问父类的静态成员

* 6.可以通过类的名称在类定义外部访问静态成员

*

*/class Human{    public $name;    protected $height; //只有自身和子类可以访问    public $weight;    private $isHungry = true; //不能被子类访问    public static $sValue = "Static value in Human class"."\n";    public function eat($food){        echo $this->name."&#39;s eating "."&#39;$food"."\n";

    }    public function info(){        echo "HUMAN :".$this->name. ";".$this->height.";".$this->isHungry."\n";

    }

}class Animal{

}//类的定义以关键字class开始,后面是类的名称,类的命名通常第一个字母大写,以中括号开始和结束//在PHP中用extends关键字表示类的继承,后面跟父类的类名//PHP中extends后只能跟一个类的类名,这是PHP中的单继承原则class NBaplayer extends Human{// public $name = "Jordan"; //定义属性// public $height = "198cm";// public $weight = "98kg";    public $team = "Bull";    public $playernumber = "23";    private $age = "40"; //Private的类成员只能在内部被访问//静态属性在定义时在访问控制关键字后面添加static关键字即可    public static $president = "David Stern";// 静态方法在定义时在访问控制关键字后面添加static关键字即可    public static function changePresident($newpresdt){//在类定义中使用静态成员时,用self或者static关键字后面跟::操作符即可//注意,在访问静态成员属性时,::后面需要跟$符号        self ::$president = $newpresdt;//使用parent关键字访问父类中的静态成员        echo parent::$sValue."\n";

    }//构造函数,在对象被实例化时自动调用    function __construct($name,$height,$weight,$team,$playernumber)    {        echo "in NBaplayer constuctor\n";        $this->name = $name; //$this是php里面的伪变量,表示对象自身,可以通过$->this的方式访问对象的属性和方法        $this->height = $height;        $this->weight = $weight;        $this->team = $team;        $this->playernumber = $playernumber;        echo $this->height."\n";

    }//析构函数,在程序执行结束时自动调用//析构函数通常被用于清理程序使用的资源。比如,程序使用了打印机,那么可以在析构函数里释放打印机资源    function __destruct()    {        echo "Destroying ".$this->name."\n";

    }//定义方法    public function run()    {        echo "running\n";

    }    public function jump()    {        echo "jumping\n";

    }    public function dribble()    {        echo "dribbling\n";

    }    public function shoot()    {        echo "shooting\n";

    }    public function dunk()    {        echo "dunking\n";

    }    public function pass()    {        echo "passing\n";

    }    public function getAge(){        echo $this->name."&#39;s age is ".($this->age - 2)."\n";

    }

}//类到对象的实例化//类的对象为实例化时使用关键字new,后面是类的名称和一堆括号//$jordan = new NBaplayer("Jordan","198cm","98kg","Bull","23");//$james = new NBaplayer("James","203cm","120kg","Heat","6");//对象中的成员属性通过->符号来访问//在类定义外部访问静态属性,可以用类名加::操作符的方法来访问类的静态成员//echo NBaplayer::$president." Before change"."\n";//NBaplayer::changePresident("Aadam Siver");//echo NBaplayer::$president."\n";//echo Human::$sValue."\n";//echo "Jordan : ".$jordan->president."\n";// echo "James : ".$james->president."\n";//echo $jordan->name."\n";//echo $jordan->getAge();//$jordan->info();//$jordan->eat("Apple"); //在子类中的对象上可以直接访问父类中定义的属性和方法//对象中的成员方法通过->符号来访问//$jordan->dribble();//$jordan->dunk();// $jordan->jump();// $jordan->pass();// $jordan->run();// $jordan->shoot();//// //每一次用new实例化对象的时候,都会用类名后面的参数列表调用构造函数//$james = new NBaplayer("James","203cm","120kg","Heat","6");//echo $james->name."\n";// //通过把变量设置为Null,可以出发析构函数的调用// //当对象不会再被使用的时候,会触发析构函数//$james1 = $james;//$james2 = &$james;//$james2 = null;//$james1 = null;// echo "From now on James will not be used.\n";

Related recommendations:

JavaScript object-oriented detailed explanation

PHP object-oriented identification object instance detailed explanation

JS object-oriented inheritance knowledge detailed explanation

The above is the detailed content of PHP sharing about object-oriented programming examples. For more information, please follow other related articles on the PHP Chinese website!

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
The Continued Use of PHP: Reasons for Its EnduranceThe Continued Use of PHP: Reasons for Its EnduranceApr 19, 2025 am 12:23 AM

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: Exploring Their Similarities and DifferencesPHP and Python: Exploring Their Similarities and DifferencesApr 19, 2025 am 12:21 AM

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 and Python: Different Paradigms ExplainedPHP and Python: Different Paradigms ExplainedApr 18, 2025 am 12:26 AM

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 and Python: A Deep Dive into Their HistoryPHP and Python: A Deep Dive into Their HistoryApr 18, 2025 am 12:25 AM

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.

Choosing Between PHP and Python: A GuideChoosing Between PHP and Python: A GuideApr 18, 2025 am 12:24 AM

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 and Frameworks: Modernizing the LanguagePHP and Frameworks: Modernizing the LanguageApr 18, 2025 am 12:14 AM

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.

PHP's Impact: Web Development and BeyondPHP's Impact: Web Development and BeyondApr 18, 2025 am 12:10 AM

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

How does PHP type hinting work, including scalar types, return types, union types, and nullable types?How does PHP type hinting work, including scalar types, return types, union types, and nullable types?Apr 17, 2025 am 12:25 AM

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.

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

Video Face Swap

Video Face Swap

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

Hot Tools

MinGW - Minimalist GNU for Windows

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.

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

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