日期:2014-05-17 浏览次数:20578 次
class test{
public function __construct($host="127.0.0.1",$port="80")
{
echo 'host:'.$host."<br>";
echo 'port:'.$port;
}
}
$data['host']='192.168.1.1';
$data['port']='1212';
$str=implode(',',$data);
$obj=new test($str);
host:192.168.1.1,1212
port:80