Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
その上にあるスクリプトで使用するすべての変数を宣言したい、例えば
$user_class= ''; $user_id = 0; $user_profile = '';
オブジェクトとなる $user_class には何を使用すればよいですか?
ユーザー クラスを作成したくない場合は、それを標準オブジェクトとして宣言できます。
$user = new stdClass(); $user->class = "employee"; $user->id = 0;
クラスUserを宣言するには:
class User { // property declaration public $id; public $class; } // usage $u1 = new User();