- Output for 7.3.0 - 7.3.33, 7.4.0 - 7.4.29, 8.0.0 - 8.0.19, 8.1.0 - 8.1.6
- users
<?php
class Model {
public static $table = 'table';
public static function getTable() {
return static::$table; // self:: / static::
}
}
class User extends Model {
public static $table = 'users';
}
echo User::getTable(); // 'table'