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

Source: Internet
Author: User
The definition of the class and the instantiation of the object

<?php//class members are the class hero{public $name that belong to the object    ;/    /member variables//member properties (in strongly typed languages)    protected $blood;    Private $attack;    Member Method    function skill () {        echo "$this->name<br>control";            }} $s = new Hero ();//Build a Hero $s->name = "Riven";  Assign the hero echo "$s->name<br>";//output Hero name $s->skill ();

constructors, destructors

Function: Initializes some members of the class (parameter custom initial value) class Ren {public    $name;    public $age;    Use type//old version definition usage in strongly typed languages/* 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 file";}} $s = new Ren (a);    echo $s->age;    ? >

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.