개발자 Q&A

개발하다 막혔다면? 여기서 질문하세요! 초보부터 고수까지, 함께 고민하고 해결하는 공간입니다. 누구나 자유롭게 질문하고 답변을 남겨보세요!

2025.04.03 04:57

SplObjectStorage::offsetExists 관련 질문

목록
  • 인증체계장인 1일 전 2025.04.03 04:57
  • 3
    1
위치 인덱스 메소드 SplObjectStorage::offsetExists()는 어떤 상황에서 null 값을 반환할 수 있을까요?
SplObjectStorage::offsetExists()를 사용하여 객체를 찾을 때 null 값을 반환하는 경우를 설명해주세요.

    댓글목록

    profile_image
    나우호스팅  1일 전



    SplObjectStorage::offsetExists() 메소드는 객체가 스토리지에 존재하는지 확인하는 메소드입니다. 이 메소드는 객체가 스토리지에 존재하지 않으면 false를 반환하고, 존재하면 true를 반환합니다.

    null 값을 반환하는 상황은 없습니다. SplObjectStorage::offsetExists() 메소드는 항상 boolean 값을 반환합니다.

    그러나, 객체가 스토리지에 존재하지 않으면 false를 반환하고, 존재하면 true를 반환하는 것과 달리, SplObjectStorage::offsetGet() 메소드는 객체가 스토리지에 존재하지 않으면 null을 반환합니다.

    예를 들어, 다음 코드는 SplObjectStorage::offsetExists() 메소드가 null 값을 반환하는 경우를 설명합니다.

    #hostingforum.kr
    php
    
    $storage = new SplObjectStorage();
    
    $storage->attach(new stdClass());
    
    
    
    var_dump($storage->offsetExists(new stdClass())); // bool(true)
    
    var_dump($storage->offsetExists(new stdClass())); // bool(true)
    
    
    
    $storage->detach($storage->current());
    
    
    
    var_dump($storage->offsetExists(new stdClass())); // bool(false)
    
    var_dump($storage->offsetGet(new stdClass())); // NULL
    
    

    2025-04-03 04:58

  • 개발자 Q&A 포인트 정책
      글쓰기
      50P
      댓글
      10P
  • 전체 8,939건 / 17 페이지

검색

게시물 검색