PHP 클래스에 속성 유형 힌트를 도입할 때 다음과 같은 오류가 발생할 수 있습니다. , "초기화 전에 유형이 지정된 속성에 액세스하면 안 됩니다." 이 오류는 선언된 유형과 일치하는 유효한 값으로 초기화되기 전에 속성에 액세스할 때 발생합니다.
PHP 7.4의 속성에 대한 유형 힌트에 따르면 모든 속성은 선언된 유형과 일치하는 값. 할당되지 않은 속성은 정의되지 않은 상태이며 선언된 유형, 심지어 null과도 일치하지 않습니다.
다음 코드를 고려하세요.
class Foo { private int $id; private ?string $val; private DateTimeInterface $createdAt; private ?DateTimeInterface $updatedAt; // Getters and setters omitted for brevity... } $f = new Foo(1); $f->getVal(); // Error: Typed property Foo::$val must not be accessed before initialization
이 예에서는 문자열이나 null 값을 할당하지 않고 $val 속성에 액세스하면 먼저 error.
기본값:
선언하는 동안 속성에 기본값을 할당할 수 있습니다:
class Foo { private ?string $val = null; // Default null value for optional property }
생성자 초기화:
생성자에서 속성 초기화:
class Foo { public function __construct(int $id) { // Assign values to all properties $this->id = $id; $this->createdAt = new DateTimeImmutable(); $this->updatedAt = new DateTimeImmutable(); } }
Nullable 유형:
선택적 속성의 경우 nullable로 선언합니다.
private ?int $id;
DB 생성 값 (자동 생성 ID):
데이터베이스에 의해 초기화된 속성에 null 허용 유형 사용:
private ?int $id = null;
위 내용은 PHP에서 \'초기화 전에 유형이 지정된 속성에 액세스하면 안 됩니다\' 오류가 발생하는 이유는 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!