以下のPHP関数は、次のエラーを生成しています。解析エラー:構文エラー、予期しない'('、T_STRINGまたはT_VARIABLEまたは'$'が必要です。この行には、このコードが含まれています。$obj = new ( );
誰かが何が悪いのか知っていますか?
function createContextAwareObjectOfClass($className) {
$className;
$obj = new ( );
IApplicationContextAware;
if (!( $obj instanceof null )) {
Exception;
throw new ( '' . 'Non-context aware class "' . $className . '" passed to createContextAwareObjectOfClass' );
}
$obj->setAppContext( $this );
return $obj;
}