
PHP 8.0 이상에서는 MongoDBBSONDocument::offsetSet 메소드를 사용하여 키-값 쌍을 추가하려면, 다음과 같이 작성하세요.
#hostingforum.kr
php
$document = new MongoDBBSONDocument();
$document->set('name', 'John');
또는
#hostingforum.kr
php
$document = new MongoDBBSONDocument();
$document['name'] = 'John';
위 코드는 PHP 8.0 이상에서 오류를 발생시키지 않습니다.
offsetSet 메소드는 PHP 7.4에서 사용할 수 있지만, PHP 8.0 이상에서는 deprecated 상태로 변경되어 사용을 권장하지 않습니다.
2025-04-16 19:27