2017-04-11 1 views
-6

구문 분석 오류 : 예기치 않은 T_FUNCTION, 예상치 못한 ')'/home2/twofouwa/public_html/wwwwwwww/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

새로운 코드 나에게주세요 : 영업 이익은 이후 자신의 질문을 수정 한에게.

은 자동로드 익명 함수에 설명서를 읽기 : 오류가 당신을 말하고있다 http://www.php.net/spl_autoload_register

정확히 어떤 문제가. 자동로드 호출을 끝낼 때 ) 클로저가 누락되었습니다. 아래를 참조하십시오.

spl_autoload_register(function ($class) { 

}); //This part here 
+0

내 게시물을 확인하고 새로운 전체 코드를 제공하십시오. 죄송합니다. –

관련 문제