리턴값 설정 아시는 분... 정보
리턴값 설정 아시는 분...본문
function profile_page() {
if (is_user_logged_in())
include('profile.php');
else
return "권한없음";
}
--------------
위와 같은 구문에서 return 값에 특정 페이지로 가도록 링크를 하려면 어떻게 해야 하나요?
if (is_user_logged_in())
include('profile.php');
else
return "권한없음";
}
--------------
위와 같은 구문에서 return 값에 특정 페이지로 가도록 링크를 하려면 어떻게 해야 하나요?
댓글 전체
lib/common.lib.php에 goto_url()함수를 사용해 보세요.