naming(fgets(STDIN)); $X->hello(); class AI { public $name; function hello() { echo $this->name; } function naming($ID){ // IDの末尾が'ai'の場合大文字に変換。それ以外はIDに'-AI'を付与。 if(substr($ID, -2) == 'ai'){ $this->name = substr_replace($ID, 'AI', -2, 2); }else{ $this->name = $ID.'-AI'; } } }