运行 ❯
获取您
自己的 PHP
服务器
×
更改方向
更改主题,暗黑/明亮
转到 Spaces
<?php namespace Html; class Table { public $title = ""; public $numRows = 0; public function message() { echo "<p>Table '{$this->title}' has {$this->numRows} rows.</p>"; } } $table = new Table(); $table->title = "My table"; $table->numRows = 5; ?> <!DOCTYPE html> <html> <body> <?php $table->message(); ?> </body> </html>
表格“我的表”有 5 行。