«php-7.4» 태그된 질문

2
속성 유형 힌트를 도입 할 때 갑자기 "초기화 전에 유형이 지정된 속성에 액세스하면 안됩니다"오류가 발생하는 이유는 무엇입니까?
다음과 같이 새로 도입 된 속성 유형 힌트를 사용하도록 클래스 정의를 업데이트했습니다. class Foo { private int $id; private ?string $val; private DateTimeInterface $createdAt; private ?DateTimeInterface $updatedAt; public function __construct(int $id) { $this->id = $id; } public function getId(): int { return $this->id; } public function getVal(): ?string { return …

3
PHP 7.4에서 ArrayObject가 end ()와 작동하지 않습니다
PHP 7.4로 마이그레이션 할 때 reset(), current()또는 end()ArrayObject와 같은 일부 배열 함수의 다른 동작을 처리해야합니다 . 다음 예제는 다른 출력을 생성합니다. <?php $array = new \ArrayObject(["a", "b"]); $item = end($array); var_dump($item); $array = ["a", "b"]; $item = end($array); var_dump($item); 함께 PHP 7.4 출력이다 : bool(false) string(1) "b" 7.4 이전의 PHP …
9 php  php-7.4 


당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.