search
HomeBackend DevelopmentPHP TutorialPHP Object-Oriented Journey: Static Variables and Methods_PHP Tutorial
PHP Object-Oriented Journey: Static Variables and Methods_PHP TutorialJul 13, 2016 am 10:42 AM
phpstaticandKeywordsvariableandstatementobjectAttributesmethodyeskindFor

The static keyword declares that an attribute or method is related to the class, rather than to a specific instance of the class. Therefore, this type of attribute or method is also called "class attribute" or "class method" ".

If access control permissions allow, you can call it directly using the class name plus two colons "::" without creating an object of this class.

The static keyword can be used to modify variables and methods.

You can directly access the static attributes and static methods in the class without instantiation.

Static properties and methods can only access static properties and methods, and non-static properties and methods cannot be accessed by class. Because when static properties and methods are created, there may not yet be any instances of this class that can be called.

Static attributes have only one copy in memory and are shared by all instances.

Use the self:: keyword to access static members of the current class.
Public properties of static properties

All instances of a class share static properties in the class.

In other words, even if there are multiple instances in the memory, there is only one copy of the static attributes.

In the following example, a counter $count attribute is set, with private and static modifications. In this way, the outside world cannot directly access the $count property. As a result of the program running, we also see that multiple instances are using the same static $count attribute.

Copy the code as follows

class user{
private static $count = 0; //Record the login status of all users.
public function __construct(){
self::$count = self::$count + 1;
}
public function getCount(){
return self::$count;
}
public function __destruct(){
self::$count = self::$count -1;
}
}
$user1 = new user();
$user2 = new user();
$user3 = new user();
echo "now here have ".$user1->getCount()." user";
echo "
";
unset( $user3) ;
echo "now here have ".$user1->getCount()." user";
?>

Program running result:
1
2

now here have 3 user
now here have 2 user bKjia.c0m
Static attribute calls directly

Static properties can be used directly without instantiation, and can be used directly before the class is created.

The method used is class name::static property name.

The code is as follows Copy the code


class Math{
public static $pi = 3.14;

}
//Find a garden with a radius of 3 area.
$r = 3;
echo "The area of ​​radius $r is
";
echo Math::$pi * $r * $r ;

echo "

";
//I think 3.14 is not accurate enough here, so I set it to be more accurate.
Math::$pi = 3.141592653589793;
echo "The area of ​​radius $r is
";
echo Math::$pi * $r * $r ;
?> ;

Program running results:
1
2
3
4

The area with radius 3 is
28.26
The area with radius 3 is
28.2743338823

The class is not created, and the static attributes can be used directly. When are static properties created in memory? I haven't seen any relevant information in PHP. Citing concepts in Java to explain should also be universal.

Static properties and methods, created when the class is called. When a class is called, it means that the class is created or any static member in the class is called.
Static method

Static methods can be used directly without the class being instantiated.

The method used is class name:: static method name.

Let’s continue writing this Math class to perform mathematical calculations. We design a method to calculate the maximum value. Since it is a mathematical operation, we do not need to instantiate this class. It would be much more convenient if this method can be taken and used.

We designed this class just to demonstrate the static method. www.111Cn.net provides the max() function in PHP to compare values.

Copy the code as follows

class Math{
                                                                                                                                                                                           : $num2;

}
$a = 99;
$b = 88;
echo "Show the maximum value of $ a and $ b is";
echo "
";
echo Math::Max($a,$b);
echo "
";echo "
";echo "
";
$a = 99;
$b = 100;
echo "Show the maximum value of $a and $b is";
echo "
";
echo Math ::Max($a,$b);
?>

Program running results:

The maximum value shown in $a and $b is
99
The maximum value shown in $a and $b is
100
Static How to call static method

The first example, when a static method calls other static methods, use the class name directly.

The code is as follows Copy the code

// Math class that implements maximum value comparison.
class Math{
                                                                                                                                                                                                                        . function Max3($num1,$num2,$num3){
           $num1 = Math::Max($num1,$num2);
            $num2 = Math::Max($num2,$num3);
$num1 = Math::Max($num1,$num2);
return $num1;
}
}
$a = 99;
$b = 77;
$c = 88;
echo "Show the maximum value in $a $b $c is";
echo "
";
echo Math::Max3($a,$b ,$c);
?>

Program running result:
1
2

Displays that the maximum value among 99 77 88 is
99

You can also use self:: to call other static methods in the current class. (Suggestion)

The code is as follows Copy the code


// Math class that implements maximum value comparison.

class Math{

                                                                                                                                                                                                                        . function Max3($num1,$num2,$num3){
$num1 = self::Max($num1,$num2);
$num2 = self::Max($num2,$num3);
$num1 = self::Max($num1,$num2);
return $num1;
}
}
$a = 99;
$b = 77;
$c = 88;
echo "Show the maximum value in $a $b $c is";
echo "
";
echo Math::Max3($a,$b ,$c);
?>

Program running result:
1
2

Displays that the maximum value among 99 77 88 is
99
Static method calls static property www.111Cn.Net

Use class name::static property name to call the static properties in this class.


The code is as follows Copy the code

//
class Circle{

public static $pi = 3.14;


public static function circleAcreage($r){

        return $r * $r * Circle::$pi;

   }
}
$r = 3;
echo "The area of ​​a circle with radius $r is" . Circle::circleAcreage ($r);
?>

Program execution result:
1

The area of ​​a circle with radius 3 is 28.26

Use self:: to call the static properties of this class. (Suggestion)

The code is as follows Copy the code

//
class Circle{

public static $pi = 3.14;


public static function circleAcreage($r){

        return $r * $r * self::$pi;

    }
}
$r = 3;
echo "The area of ​​a circle with radius $r is" . Circle::circleAcreage ($r);
?>

Program running result:
1

The area of ​​a circle with radius 3 is 28.26
Static methods cannot call non-static properties

Static methods cannot call non-static properties. Non-static properties cannot be called using self::.


The code is as follows Copy the code

//
class Circle{

public $pi = 3.14;


public static function circleAcreage($r){

Return $r * $r * self::pi;

}
}
$r = 3;
echo "The area of ​​a circle with radius $r is" . Circle::circleAcreage($ r);
?>

Program running result:
1

Fatal error: Undefined class constant 'pi' in E:PHPProjectstest.php on line 7

You also cannot use $this to get the value of a non-static property.

The code is as follows Copy the code



//
class Circle{

public $pi = 3.14;

public static function circleAcreage($r) {

          return $r * $r * $this->pi;
                                                                                                                                                              . ::circleAcreage($r);
?>

Program running result:
1

Fatal error: Using $this when not in object context in E:PHPProjectstest.php on line 7
Static method calls non-static method

In PHP5, the $this identifier cannot be used in static methods to call non-static methods.

The code is as follows Copy the code


// Math class that implements maximum value comparison.
class Math{
public function Max($num1,$num2){
echo "bad
";
return $num1 > $num2 ? $num1 : $num2;
}
public static function Max3($num1,$num2,$num3){
$num1 = $this->Max($num1,$num2);
$num2 = $this-> ;Max($num2,$num3);
$num1 = $this->Max($num1,$num2);
return $num1;
}
}
$a = 99;
$b = 77;
$c = 188;
echo "Show the maximum value in $a $b $c is";
echo "
";
echo Math::Max3($a,$b,$c);
?>

Program execution result:

The maximum value displayed among 99 77 188 is
Fatal error: Using $this when not in object context in E:wwW.111cn.neT test.php on line 10

When a non-static method in a class is called by self::, the system will automatically convert this method into a static method.

The following code was executed and produced results. Because the Max method is converted into a static method by the system.

The code is as follows Copy the code

// Math class that implements maximum value comparison.
class Math{
public function Max($num1,$num2){ return $num1 > $num2 ? $num1 : $num2;
}
public static function Max3($ num1,$num2,$num3){
$num1 = self::Max($num1,$num2);
$num2 = self::Max($num2,$num3);
$num1 = self::Max($num1,$num2); 188;
echo "Show the maximum value in $a $b $c is";
echo "
";
echo Math::Max3($a,$b,$c) ;
?>

Program running result:
1
2

Displays that the maximum value among 99 77 188 is
188

In the following example, we let the static method Max3 use self:: to call the non-static method Max, and let the non-static method Max call the non-static property $pi through $this.

An error was reported when running. This error is the same as the previous example 3-1-9.php. This time, the non-static method Max reported an error of calling non-static properties by a static method.

This proves something. The non-static method Max we defined here is automatically converted into a static method by the system.

The code is as follows Copy the code

// Math class that implements maximum value comparison.

class Math{

public $pi = 3.14;

public function Max($num1,$num2){

echo self::$pi; //The call here does not seem to work There should be a problem.

Return $num1 > $num2 ? $num1 : $num2;
}
public static function Max3($num1,$num2,$num3){
$num1 = self ::Max($num1,$num2);
$num2 = self::Max($num2,$num3);
$num1 = self::Max($num1,$num2);
return $num1;
}
}
$a = 99;
$b = 77;
$c = 188;
echo "Show $a $b $c The maximum value is ";
echo "
";
echo Math::Max3($a,$b,$c);
?>

The program running result:
1
2

The maximum value displayed among 99 77 188 is
Fatal error: Access to undeclared static property: Math::$pi in E: PHPProjectstest.php on line 7

For more details, please check: http://www.bKjia.c0m/phper/php/56640.htm

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/667913.htmlTechArticleThe static keyword declares that a property or method is related to the class, not to a specific instance of the class Related, therefore, such properties or methods are also called class properties or class methods. If you visit...
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
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

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

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

Hot Tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

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

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.