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

关于给构造函数传达参数方法

时间:2016-12-12 11:49:43      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:type   ret   方法   res   span   exit   传递   class   new   

<?php 
//给构造函数传达参数
header("Content-type: text/html; charset=utf-8");
class test
{
    private $user_ids=array("66645","66586");
    private $user_id;
    //构造传递参数
    public function __construct($user_id)
    {
        $this->user_id=$user_id;
        if(!in_array($this->user_id, $this->user_ids))
        {
            $res[‘status‘]=0;
            $res[‘msg‘]="你的账号不在测试账号内";
            // ajax_return($res);exit;
            print_r($res);exit;
        }
    }
    public function test1($user_id)
    {
        echo "<br/>";
        echo "___1111";    
    }

}

$user_id=66642; 
//new类的时候带参数
$obj=new test($user_id);
$obj->test1($user_id);



 ?>

 

关于给构造函数传达参数方法

标签:type   ret   方法   res   span   exit   传递   class   new   

原文地址:http://www.cnblogs.com/hnbiao/p/6163798.html

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