<?php
$person = new stdClass();
$person->name = "yu";
$person->sex = "man";
$person->school = array("a", "b", "c");
$person->aa =  func();

function func(){
    echo "11111";
}

echo $person->aa;
print_r($person->school);
?>

 

相关文章:

  • 2021-09-15
  • 2022-12-23
  • 2021-11-09
  • 2021-09-08
  • 2021-08-11
  • 2021-12-21
  • 2022-12-23
  • 2021-06-14
猜你喜欢
  • 2022-12-23
  • 2021-12-12
  • 2021-09-27
  • 2022-12-23
  • 2022-02-28
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案