2017-04-11 33 views
-6

構文エラー、予期しないT_FUNCTION、予期している ')' /home2/twofouwa/public_html/wwwwwwwwww/wp-content/plugins/social-media-auto-publish/api/Facebook/autoload.php on line 45構文エラー、予期しないT_FUNCTIONを解決する方法 ')?

どうすれば解決できますか?

 spl_autoload_register(function ($class) { 
// project-specific namespace prefix 
$prefix = 'Facebook\\'; 

// For backwards compatibility 
$customBaseDir = ''; 
// @todo v6: Remove support for 'FACEBOOK_SDK_V4_SRC_DIR' 
if (defined('FACEBOOK_SDK_V4_SRC_DIR')) { 
    $customBaseDir = FACEBOOK_SDK_V4_SRC_DIR; 
} elseif (defined('FACEBOOK_SDK_SRC_DIR')) { 
    $customBaseDir = FACEBOOK_SDK_SRC_DIR; 
} 
// base directory for the namespace prefix 
$baseDir = $customBaseDir ?: __DIR__ . '/'; 

// does the class use the namespace prefix? 
$len = strlen($prefix); 
if (strncmp($prefix, $class, $len) !== 0) { 
    // no, move to the next registered autoloader 
    return; 
} 

// get the relative class name 
$relativeClass = substr($class, $len); 

// replace the namespace prefix with the base directory, replace namespace 
// separators with directory separators in the relative class name, append 
// with .php 
$file = rtrim($baseDir, '/') . '/' . str_replace('\\', '/', $relativeClass) . '.php'; 

// if the file exists, require it 
if (file_exists($file)) { 
    require $file; 
} 

});

くれ

+0

何が間違っているかを教えてください。 * "expecting ')' ... on line 45 '" * –

+0

コードを入力してください。 – Sakuto

+0

あなたのコードですか?これがなければ私たちはコード –

答えて

0

注新しいコードを記入してください: OPは以来、彼らの質問を変更したが。

のautoload無名関数にマニュアルを読む:http://www.php.net/spl_autoload_register

エラーが間違っている正確に何を言っています。オートロードコールを終了すると終了)がありません。下記参照。

spl_autoload_register(function ($class) { 

}); //This part here 
+0

私のポストをチェックし、私に新しいコードを教えてください。 –

関連する問題