


Discuss in detail the usage of public, private, protected, abstract and other keywords in PHP
The editor below will share with you an article that discusses in detail the usage of public, private, protected, abstract and other keywords in PHP. It has a good reference value and I hope it will be helpful to everyone. Let’s follow the editor and take a look.
Commonly used keywords in PHP
contains many restrictions on functions and classes in PHP Commonly used keywords usually include abstract, final, interface, public, protected, private, static, etc. Below we will analyze and sort out their usage.
Keywords for variables and methods public, private, protected
public has the greatest authority and can be used by subclasses or supported When called after instantiation,
protected means protected, and access permissions can only be accessed in subclasses and this class.
private means private, only It may be that the keyword static
<?php // /** * Define MyClass */ class MyClass { public $public = 'Public'; protected $protected = 'Protected'; private $private = 'Private'; public function printHello() { echo $this->public; echo $this->protected; echo $this->private; } protected function pro_test(){ var_dump(1); } } $obj = new MyClass(); echo $obj->public; // 这行能被正常执行 //echo $obj->protected; // 这行会产生一个致命错误 //echo $obj->private; // 这行也会产生一个致命错误 $obj->printHello(); // 输出 Public、Protected 和 Private $obj->pro_test();//直接报错 ?>
## variables and methods can be accessed in the current class
The function of static is to enable values or methods to be called in a class without instantiation. At the same time, static-modified variables have the function of storing values. For example, if we do not use static, the result of running is as follows:<?php function test(){ $var=1; echo $var."</br>"; $var++; } test();// 1 test();// 1 test();// 1 ?>If we add static to the variable, it will become like this
<?php function test(){ static $var=1; echo $var."</br>"; $var++; } test();// 1 test();// 2 test();// 3 ?>Here You may not be able to realize the benefits of doing this in PHP, so let's first assume that the reader is also familiar with JS. There is no static keyword in JS, so if we want to implement a program that can save the results of each program operation as We need to write a program based on the next operation like this.
var glo=0; function test(){ glo++; document.writeln(glo); } test(); test(); test();This will leak glo into global variables. If more variables are generated, it will lead to memory leaks (memory leaks refer to Variables occupy too much memory space and will not be released)
<script> var glo=0; function test(){ glo++; document.writeln(glo); } test();// 1 test();// 2 test();// 3 </script>So compared to languages that do not define static, it has the advantage of retaining variables. It does not leak memory, and it is not easy to cause global variables to be misused (because the scope is not global)
$age=0; $age++; function test1() { static $age = 100; $age++; echo $age."</br>"; } function test2() { static $age = 1000; $age++; echo $age."</br>"; } test1(); // 101 test2(); // 1001
The key to class and method The word final
final can only be used to modify class and function. After using final, it cannot be inherited. For example, the following code will directly report an errorclass BaseClass { public $public = 'Public'; function test() { echo "BaseClass::test() called\n"; } final public function moreTesting() { echo "BaseClass::moreTesting() called\n"; } } class ChildClass extends BaseClass { public function moreTesting() { echo "ChildClass::moreTesting() called\n"; } }
Special keywords interface,abstract##The meaning of interface is to standardize the programming style. Imagine if it is implemented If we have an interface, then when we use this interface class, we must implement the methods inside, which plays a role in unified naming.
Class can inherit multiple interfaces. Single inheritance between interfaces is achieved through extends. The relationship between class and interface is established through implements
Sample code:
<?php interface testA{ function funcA(); } interface testB{ function funcB(); } interface testC extends testA { function funcC(); } class run implements testC ,testB { public function funcA() { // TODO: Implement funcA() method. } public function funcB() { // TODO: Implement funcB() method. } public function funcC() { // TODO: Implement funcC() method. } } ?>
The function of abstract is actually the same as that of interface, but all methods in interface must be implemented, but in classes modified by abstract, There can be one or more abstract modification methods, so we can understand that interface is a special case of abstract (when all methods are abstract methods, they must be implemented). Abstract has the following characteristics:
1. As long as at least one method in the class uses the abstract keyword, then the class is abstract, and the corresponding keyword must be added
2. Abstract Methods only have the declaration part of the method and no method body.
But in my opinion, abstract has several scenarios like this in actual applications
1. Standardize the naming rules of public parts when multi-person programming (without any explanation, the principle Same as interface)
2. To prevent the parent from being instantiated directly, use the
style code as follows:
<?php abstract class shopping { public function buy() { echo "buy"; } public function loan() { echo "loan"; } } class leslieBuy extends shopping { } //$test1=new shopping;//直接语法错误 $leslieSie = new leslieBuy; $leslieSie->loan();//打印出loan ?>
The above article discusses in detail the usage of public, private, protected, abstract and other keywords in PHP. This is all the content shared by the editor. I hope it can give you a reference, and I hope you will support the PHP Chinese website.
Articles you may be interested in:
Explanation on how PHP allows the arrays with the same values to form a new array instanceDetailed explanation of solving the problem of inconsistent PHP string lengthsCommand line execution of $argv and $argc configuration methods in php script_php exampleThe above is the detailed content of Discuss in detail the usage of public, private, protected, abstract and other keywords in PHP. 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

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

WebStorm Mac version
Useful JavaScript development tools

Atom editor mac version download
The most popular open source editor

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

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