Q:

PHP program to create an object of a class and access the class attributes

belongs to collection: PHP Classes & Objects Programs

0

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.

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 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.

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 create multiple objects of a class ... >>