programing

잘못된 이름으로 이 개체 속성에 액세스하려면 어떻게 해야 합니까?

firstcheck 2022. 9. 26. 21:27
반응형

잘못된 이름으로 이 개체 속성에 액세스하려면 어떻게 해야 합니까?

BaseCamp API와 인터페이스하기 위해 누군가가 쓴 PHP 클래스를 사용하고 있습니다.

제가 특별히 하고 있는 전화는 할 일 목록에 있는 항목을 검색하는 것인데, 정상적으로 작동합니다.

문제는 어떻게 하면 이 컴퓨터에 접속할 수 있는지 모르겠다는 것입니다.todo-items반환되는 객체의 속성.반환된 객체의 var_dump는 다음과 같습니다.

object(stdClass)[6]
  public 'completed-count' => string '0' (length=1)
  public 'description' => string 'Description String' (length=89)
  public 'id' => string '12345' (length=7)
  public 'milestone-id' => string '' (length=0)
  public 'name' => string 'Error Reports' (length=13)
  public 'position' => string '1' (length=1)
  public 'private' => string 'false' (length=5)
  public 'project-id' => string '58904' (length=7)
  public 'tracked' => string 'false' (length=5)
  public 'uncompleted-count' => string '1' (length=1)
  public 'todo-items' => 
    object(stdClass)[3]
      public 'todo-item' => 
        object(stdClass)[5]
          public 'completed' => string 'false' (length=5)
          public 'content' => string 'content string here' (length=133)
          public 'created-on' => string '2009-04-16T20:33:31Z' (length=20)
          public 'creator-id' => string '23423' (length=7)
          public 'id' => string '234' (length=8)
          public 'position' => string '1' (length=1)
          public 'responsible-party-id' => string '2844499' (length=7)
          public 'responsible-party-type' => string 'Person' (length=6)
          public 'todo-list-id' => string '234234' (length=7)
  public 'complete' => string 'false' (length=5)

어떻게 하면todo-items이 오브젝트의 일부입니까?

<?php
$x = new StdClass();
$x->{'todo-list'} = 'fred';
var_dump($x);

그렇게,$object->{'todo-list'}는 서브 오브젝트입니다.이렇게 설정할 수 있으면 동일한 방법으로 읽을 수도 있습니다.

echo $x->{'todo-list'};

또 다른 가능성:

$todolist = 'todo-list';
echo $x->$todolist;

보다 간단하게 어레이로 변환하고 싶은 경우(즉,$ret['todo-list']accessing)을 사용하여 이 코드를 Zend_Config에서 거의 글자 그대로 가져와 변환합니다.

public function toArray()
{
    $array = array();
    foreach ($this->_data as $key => $value) {
        if ($value instanceof StdClass) {
            $array[$key] = $value->toArray();
        } else {
            $array[$key] = $value;
        }
    }
    return $array;
}

이 간단한 방법을 사용해 보세요!

$obj = $myobject->{'mydash-value'};
$objToArray = array($obj);

언급URL : https://stackoverflow.com/questions/758449/how-do-i-access-this-object-property-with-an-illegal-name

반응형