Skip to main content

Class and object

Creating a Class:

To create a class use the class keyword and a name. Class names can be any combination of numbers and letters, although they must not begin with a number.
The code associated with a class must be enclosed within braces.

Class Defination:

<?php
class ClassName {
  // class body
}
?>

For example:
<?php

class Books{

public $name;
public $author;

public function showBook(){
$name="Munna Madan";
echo $name;
}
}
?>

Setting Properties and Methods

In the class body are defined its properties and methods.
        - Properties are variables defined inside the class.
        - Methods are functions created within the class, with the word "function".

The name of the variable (property) and the "function" word must be preceded by a specific attribute that determines the level of access that is allowed for the property or the method to be accessed outside its class. This can be: public, protected, or private.

    public - available in all script
    protected - available to the class itself and to sub-classes that inherit from it
    private - available only inside that class

If no attribute is added, it is considered "public".

Full syntax to create a class is:

<?php
class Class_Name {
  attribute $property1;
  attribute $property2;
  ...

  attribute function Method1() {
    // method code
  }
  attribute function Method2() {
    // method code
  }
  ...
}
?>

Creating Objects:

Once a class is created, to be used in your script, you must instantiate an object of that class. The instance is declared in the PHP script with the new operator, followed by the name of the class and two parentheses.
   Syntax:

$object_Name = new Class_Name();

- $object_Name is the name of the object by which can be used properties and methods of that class.


Now full example of Class and object below:

<?php

class Books{

public $name;
public $author;

function showName(){
    $name="Munna Madan";
    $author="Laxmi Prasad Devkota";
   
    echo "Book named ".$name." was written by".$author;
}
   
}

$obj=new Books(); //creating an object
$obj->showName();// calling function via object

?>
I hope it was not very hard !!!

Comments

Popular posts from this blog

MySQL Connection

Connection with MySQL Database Before accessing database, you must create a connection to the database Syntax: mysql_connect(servername,username,password); where, servername specifies the server to connect to. Default value is “localhost” username specifies the username to log in with. Default value is the name of the user that owns the server process. To connect offline we use username “root”. password specifies the password to log in with. Default is “” Code : Creating connection to the database and selecting the required database <?php $con = mysql_connect(“localhost”,”root”,”"); if (!$con) { die(‘Could not connect: ‘ . mysql_error()); } else{ mysql_select_db(“test”, $con) }; ?> Here, we have store connection in a variable called $con and trap error using die function. Closing connection The connection will be closed automatically when the script ends. To close the connection before, use the mysql_close() function: <?php $con = mysql_conne...

Type Juggling and Type Casting

Type Juggling: PHP does not require (or support) explicit type definition in variable declaration; a variable's type is determined by the context in which the variable is used. That is to say, if a string value is assigned to variable $var, $var becomes a string. If an integer value is then assigned to $var, it becomes an integer.

Doctype Defination

A Document Type Declaration, or DOCTYPE, is an instruction that associates a particular SGML or XML document (for example, a webpage) with a Document Type Definition (DTD). Syntax The general syntax for a document type declaration is: <!DOCTYPE root-element PUBLIC "FPI" ["URI"] [ <!-- internal subset declarations --> ]>