}] ."/> }] .">
PHP에서 정적 메서드로 비정적 변수를 호출하는 방법: 먼저 클래스의 정적 메서드에서 객체를 인스턴스화한 다음 클래스에서 메서드를 호출합니다. 코드는 [public function testCallStaticFun(){echo "call static; function}].
PHP의 정적 메서드는 비정적 변수를 호출합니다.
정적 메서드는 비정적 메서드를 호출합니다. 클래스의 정적 메서드에서는 개체를 인스턴스화한 다음 메서드를 호출해야 합니다. in the class
비정적 메서드는 정적 메서드를 호출합니다. 다음과 같은 경우와 같이 self
或者 类名加::
<?php class A{ public function noneStaticFun(){ echo __CLASS__." none static function<br/>"; } public static function staticFun(){ echo __CLASS__." static function<br/>"; //静态方法调用非静态方法,需要实例化对象然后再调用对象中的非静态方法 (new A())->noneStaticFun(); } public function testCallStaticFun(){ echo "call static function<br/>"; //调用本类的静态方法,使用 self关键字或者类名 self::staticFun(); //A::staticFun(); //也可以使用这种方式 //调用其它类的静态方法,直接使用类名::方法名的形式调用 B::myStaticFun(); } } class B{ public static function myStaticFun(){ echo __CLASS__." static function<br/>"; } } //演示 $testA = new A(); $testA->testCallStaticFun(); A::staticFun();실행 결과:
call static function A static function A none static function B static function A static function A none static function
관련 무료 학습 권장 사항:php 프로그래밍(동영상) )
위 내용은 PHP 정적 메소드에서 비정적 변수를 호출하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!