我想声明我将在脚本之上使用的所有变量,例如
$user_class= '';
$user_id = 0;
$user_profile = '';
$ user_class应该用什么作为对象?
答案 0 :(得分:0)
如果您不想创建用户类,可以将其声明为标准对象:
$user = new stdClass();
$user->class = "employee";
$user->id = 0;
宣布课程用户:
class User
{
// property declaration
public $id;
public $class;
}
// usage
$u1 = new User();