How to use a class to output a two-dimensional array?
哥特
哥特 2018-05-07 09:59:35
0
0
1177

<?php

class demo{

protected $name;

protected $age;

protected $wages;


public function __construct($name,$age,$wages){

$this->name = $name;

$this->age = $age;

$this->wages = $wages;


}

public function show(){

return "员工的姓名是:{$this->name} 年龄:{$this->age} 工资:{$this->wages}";

}

}


$obj = new demo('peter',24,5000);

echo $obj->show();

    echo '<br />';


$arr = array(array('name'=>'jike','age'=>18,'wages'=>'500'),

array('name'=>'jike','age'=>18,'wages'=>'500'),);

foreach ($arr as $key => $value) {

if(is_array($value)){

foreach ($value as $key => $v) {

echo $key.'-'.$v.'<br>';

}

}

}



?>


哥特
哥特

reply all(0)
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template