Q:

PHP program to create multiple objects of a class and access attributes of the class

belongs to collection: PHP Classes & Objects Programs

0

Here, we will create a class Student and then create multiple objects of class and access all attributes of the class and then print the values attributes on the web page.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to create multiple objects of a class and access the class attributes is given below. The given program is compiled and executed successfully.

<?php
//PHP program to create multiple objects of a class and access class attributes
class Student
{
    //Attributes
    public $id;
    public $name;
    public $per;
}

$S1 = new Student();
$S2 = new Student();

$S1->id = 101;
$S1->name = "Rohit Kohli";
$S1->per = 78.23;

$S2->id = 102;
$S2->name = "Virat Sharma";
$S2->per = 79.23;

print ("Student1:" . '<br>');
print ("--->Student Id  		  : " . $S1->id . '<br>');
print ("--->Student Name		  : " . $S1->name . '<br>');
print ("--->Student Percentage    : " . $S1->per . '<br>');

print ("Student2:" . '<br>');
print ("--->Student Id  		  : " . $S2->id . '<br>');
print ("--->Student Name		  : " . $S2->name . '<br>');
print ("--->Student Percentage    : " . $S2->per . '<br>');

?>

Output:

Student1:
--->Student Id : 101
--->Student Name : Rohit Kohli
--->Student Percentage : 78.23
Student2:
--->Student Id : 102
--->Student Name : Virat Sharma
--->Student Percentage : 79.23

Explanation:

In the above program, we created a class Student that contains three attributes $id$name, and $per. After that, we created two objects of the Student class and then initialize the values of attributes and print the values of attributes for both objects using the print function on the webpage.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

PHP Classes & Objects Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
PHP program to define methods within the class... >>
<< PHP program to create an object of a class and acc...