안토니 PHP 매뉴얼에 따르면
PHP 7에서 빈 개체 만들 수있는 몇 가지 방법이 있습니다 : 그는를 방문 무슨 말을했다에 대한 자세한 내용은
<?php
$obj1 = new \stdClass; // Instantiate stdClass object
$obj2 = new class{}; // Instantiate anonymous class
$obj3 = (object)[]; // Cast empty array to object
var_dump($obj1); // object(stdClass)#1 (0) {}
var_dump($obj2); // object([email protected])#2 (0) {}
var_dump($obj3); // object(stdClass)#3 (0) {}
?>
은 대답은 PHP Manual documentation입니다.
는 그의 대답에 확장하려면 첫 번째는 다음과 같이 보일 것이다 :
먼저 예를
$obj1 = new \stdClass;
$obj1->first = 1;
print_r($obj1);
// output
// stdClass Object
// (
// [first] => 1
//)
두 번째 예
$obj2 = new class{ };
$obj2->second = 2;
print_r($obj2);
// output
// [email protected] Object
// (
// [second] => 2
//)
세 번째 예
$obj3 = (object)[];
$obj3->third = 3;
print_r($obj3);
// output
// stdClass Object
// (
// [third] => 3
//)
당신에게 수 있었다 그 선을 따라 뭔가를하십시오.
PHP [objects] (http://php.net/manual/en/language.types.object.php) 페이지를 확인하십시오 ... – War10ck
'$ obj = new stdClass(); $ obj-> item1 = 1; $ obj-> item2 = 2;' –