php 사용call 재 부팅 기능 예시 실현

본 고의 실례 는 php 사용콜 리 셋 기능 구현.여러분 께 참고 하도록 공유 하 겠 습 니 다.구체 적 으로 는 다음 과 같 습 니 다.

<?php
/**
 * Created by PhpStorm.
 * User: funco
 * Date: 17-6-9
 * Time:   1:39
 */
class MulStat
{
  // showClass     0   
  private function showClass() {
    echo "this is class ".__CLASS__;
  }

  // showString         
  private function showString($str) {
    echo "string is ".$str;
  }

  // __call                                  
  public function __call($name, $args) {
    //           $name
    if($name == "showInfo"){
      //         ($args)            
      switch(count($args)) {           // count          
        case 0:
          $this->showClass();break;
        case 1:
          $this->showString($args[0]);break;
      }// switch
    }// if
  }
}

//   MulStat 
$mulStat = new MulStat();

echo "\$mulStat->showInfo(\"funco   \"):
"; $mulStat->showInfo("funco "); // echo "

"; echo "\$mulStat->showInfo():
"; $mulStat->showInfo();
실행 결과:
$mulstat->showInfo("funco 바람"):
string is funco 바람
$mulStat->showInfo():
this is class MulStat
더 많은 PHP 관련 내용 에 관심 이 있 는 독자 들 은 본 사이트 의 주 제 를 볼 수 있다.
본 논문 에서 말 한 것 이 여러분 의 PHP 프로 그래 밍 에 도움 이 되 기 를 바 랍 니 다.

좋은 웹페이지 즐겨찾기