>  기사  >  백엔드 개발  >  PHP의 stdClass 란 무엇입니까?

PHP의 stdClass 란 무엇입니까?

藏色散人
藏色散人원래의
2019-01-28 10:48:222949검색

stdClass는 다른 유형을 객체로 변환하는 데 사용되는 PHP의 빈 클래스입니다. 이는 Java 또는 Python 객체와 유사합니다. stdClass는 객체의 기본 클래스가 아닙니다. 개체를 개체로 변환하면 수정되지 않습니다. 그러나 객체 유형을 변환/입력하는 경우 NULL이 아닌 경우 stdClass의 인스턴스가 생성됩니다. NULL인 경우 새 인스턴스는 비어 있습니다.

PHP의 stdClass 란 무엇입니까?

목적:

1.stdClass는 멤버를 호출하여 직접 액세스합니다.

2. 동적 객체에 유용합니다.

3. 동적 속성 등을 설정하는 데 사용됩니다.

프로그램 1: 배열을 사용하여 데이터 저장

<?php 
      
// 定义一个数组employee 
$employee_detail_array = array( 
    "name" => "John Doe", 
    "position" => "Software Engineer", 
    "address" => "53, nth street, city", 
    "status" => "best"
); 
  
// 显示内容
print_r($employee_detail_array); 
?>

출력:

Array
(
    [name] => John Doe
    [position] => Software Engineer
    [address] => 53, nth street, city
    [status] => best
)

프로그램 2: 배열 대신 stdClass를 사용하여 직원 세부 정보(동적 속성) 저장

<?php 
      
// 定义employee对象样式
$employee_object = new stdClass; 
$employee_object->name = "John Doe"; 
$employee_object->position = "Software Engineer"; 
$employee_object->address = "53, nth street, city"; 
$employee_object->status = "Best"; 
      
// 显示内容 
print_r($employee_object); 
?>

출력:

stdClass Object
(
    [name] => John Doe
    [position] => Software Engineer
    [address] => 53, nth street, city
    [status] => Best
)

참고: 다음을 수행할 수 있습니다. 배열 유형을 객체로, 객체를 배열로 변환합니다.

프로그램 3: 배열을 객체로 변환

<?php 
  
// 
$employee_detail_array = array( 
    "name" => "John Doe", 
    "position" => "Software Engineer", 
    "address" => "53, nth street, city", 
    "status" => "best"
); 
  
// 从数组到对象的类型转换
$employee = (object) $employee_detail_array; 
      
print_r($employee); 
?>

출력:

Array
(
    [name] => John Doe
    [position] => Software Engineer
    [address] => 53, nth street, city
    [status] => Best
)

이 기사는 PHP의 stdClass 도입에 관한 것입니다. 필요한 친구들에게 도움이 되길 바랍니다!

위 내용은 PHP의 stdClass 란 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.