欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php怎么定义结构体

程序员文章站 2022-04-16 12:47:36
...

php怎么定义结构体

PHP定义结构体的三种方式

1、第一种方式

struct Student
{
   int age;
   float score;
   char sex;
};

2、第二种方式

struct Student
{
   int age;
   float score;
   char sex;
}st;

3、第三种方式

struct
{
   int age;
   float score;
   char sex;
}st;

推荐教程:PHP视频教程

以上就是php怎么定义结构体的详细内容,更多请关注其它相关文章!

相关标签: php 结构体