Home »
PHP »
PHP Programs
PHP program to create an object of a class and access the class attributes
Here, we are going to learn how to create an object of a class and access the class attributes in PHP?
By Nidhi Last updated : December 19, 2023
Prerequisites
To understand this example, you should have the basic knowledge of the following PHP topics:
PHP - Create Class's Object, Access Its Attributes
Here, we will create a class Student and then create an object of class and access all attributes of the class and then print the values attributes on the web page.
PHP code to create class's object, access its attributes
The source code to create an object of a class and access the class attributes is given below. The given program is compiled and executed successfully.
<?php
//PHP program to create an object of a class and access class attributes.
class Student
{
//Attributes
public $id;
public $name;
public $per;
}
$S = new Student();
$S->id = 101;
$S->name = "Rohit Kohli";
$S->per = 78.23;
print ("Student Id : " . $S->id . '<br>');
print ("Student Name : " . $S->name . '<br>');
print ("Student Percentage : " . $S->per . '<br>');
?>
Output
Student Id : 101
Student Name : Rohit Kohli
Student Percentage : 78.23
Explanation
In the above program, we created a class Student that contains three attributes $id, $name, and $per. After that, we created the object of the Student class and then initialize the values of attributes and print the values of attributes using the print function on the webpage.
PHP Class & Object Programs »