我使用以下代码在 PHP 中有一个具有 5 个属性的对象:
<?php
class Person
{
private $gender, $race, $height, $weight, $eyes_color;
public function start ($gender,$race,$height, $weight, $eyes_color)
{
$this->gender=$gender;
$this->race=$race;
$this->height=$height;
$this->weight=$weight;
$this->eyes_color=$eyes_color;
}
public function show_attributes()
{
return sprintf("%s, %s, %s, %s, %s", $this->gender, $this->race, $this->height, $this->weight,$this->eyes_color);
}
}
$person=new person();
?>
我正在使用以下 HTML 代码调用此类
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Class Person</title>
</head>
<body>
<?php
require_once("Person.php");
$person->start("Male","Latin","1.83 cm","85 kg","Brown");
echo $person->show_attributes();
?>
</body>
</html>
现在,这将打印类似
Male, Latin, 1.83 cm, 85 kg, Brown
但我想打印类似的东西
--------------------------------------
|Male | Latin | 1.83 cm | 85 kg | Brown|
--------------------------------------
使用 HTML 表格。
我尝试了几件事,但我无法实现。
有没有办法强制
echo $person->show_attributes();
只显示一个属性,以便我可以从 HTML 单元格表中调用它?
谢谢。