码迷,mamicode.com
首页 > 其他好文 > 详细

面向对象

时间:2014-05-22 15:04:49      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:class   c   ext   http   a   int   

<meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>
<?php

class Person{
    private $name;
    private $pwd;
    private $age;

    //在初始化对象的时候该函数会自动运行
    //初始化函数
    function __construct($name,$pwd,$age){
        $this->name = $name;
        $this->pwd = $pwd;
        $this->age = $age;
    }

    public function intro(){

        echo "我的名字是:".$this->name." 我的密码是:".$this->pwd;
    }


}

$p1 = new Person("zhangsan","sssss",20);
$p1->intro();

?>

面向对象,布布扣,bubuko.com

面向对象

标签:class   c   ext   http   a   int   

原文地址:http://www.cnblogs.com/ZH1132672711/p/3744073.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!