2012-01-15 2 views
1

PHP 클래스에서 작업 중입니다. 클래스의 필수 입력란은 (DropoffType) 입니다. 그 대답은 REGULARPICKUP입니다. 이것을 클래스 내에 작성하고 REGULARPICKUP에 "="을 넣을 수 있습니까?PHP 클래스 값

예 :

protected $DropoffType = 'REGULARPICKUP'; 
+2

아무 문제가 없습니다. – Nazariy

답변

3

물론 할 수 있습니다

class MyClass 
{ 
    protected $DropoffType = 'REGULARPICKUP'; 
} 

또는 생성자 (이이 길을 가야하는 것입니다 여부를 특정 경우에 따라 다름)에서 할 :

class MyClass 
{ 
    protected $DropoffType; 

    public function __construct($Dropofftype = 'REGULARPICKUP') 
    { 
     $this->DropoffType = $Dropofftype; 
    } 
} 

또는 설정 기능이있는 경우 :

class MyClass 
{ 
    protected $DropoffType; 

    public function setDropoffType($Dropofftype = 'REGULARPICKUP') 
    { 
     $this->DropoffType = $Dropofftype; 
    } 
}