About PHP Object-oriented-class definition and instantiation of objects and special usage of construction and destructor functions

Source: Internet
Author: User

The definition of the class and the instantiation of the object

The members of the

<?php
//class are
class hero{
    public $name that belong to the object;//member Variable
    // Member properties (in strongly typed languages)
    protected $blood;
    private $attack;
    //member methods
    function skill () {
        echo "$this->name<br>control";        
    }
}

$s = New Hero ();//Create a hero
$s->name = "Riven"; //Assign Heroes
Echo "$s->name<br>";//output Hero
$s->skill ( );

constructors, destructors
//role: Initialize some members of a class (parameter custom initial value)
Class ren{
    public $name;
    public $age;//Use type

in strongly typed languages

Old version definition Usage
/* Public Function Ren () {
echo "is constructing function";
Public Function Ren ($v) {
$this->age = $v; */

PHP new version definition usage
Public function __construct ($v) {
$this->age = $v;
}
Public Function __destruct () {
echo "Destroying files";
}
}
$s = new Ren (20);
Echo $s->age;
?>

About PHP Object-oriented-class definition and instantiation of objects and special usage of construction and destructor functions

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.