이 글에서는 예제를 사용하여 phpconstructor
PHP 공식 웹사이트 정의:
생성자는 클래스의 특수 함수입니다. 클래스, 생성자 함수가 자동으로 호출됩니다. 함수의 이름이 클래스와 같을 경우 해당 함수는 생성자가 됩니다. 클래스에 생성자가 없으면 기본 클래스의 생성자가 호출됩니다. 예를 들어 a.php에는 a 클래스가 있습니다. <?php
class a{
function construct(){
echo 'class a';
}
}
Inherit
class a:
<?php include 'a.php'; class b extends a{ function construct(){ echo '666666'; //parent::construct(); } function index(){ echo 'index'; } }
<?php include 'a.php'; class b extends a{ function index(){ echo 'index'; } }
$test=new b();
위 내용은 PHP의 생성자 함수에 대한 샘플 코드 공유의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!