<code>if (strpos($_SERVER["REQUEST_URI"], "/CHA")===0 ) { $end = strpos($_SERVER["REQUEST_URI"], "/", 1); $channel = substr($_SERVER["REQUEST_URI"], 1, $end-1); $channelConfig = pc_base::load_config('channel'); if ( !empty($channel) && isset($channelConfig[$channel]) ) { setcookie("channel", $channel, time()+7*86400, "/"); } } </code>
phpcms의 index.php에 있는 이 코드의 의미는 이해하지만, phpcms에서는 일반적으로 이와 같은 의미인지 모르겠습니다.
<code>if (strpos($_SERVER["REQUEST_URI"], "/CHA")===0 ) { $end = strpos($_SERVER["REQUEST_URI"], "/", 1); $channel = substr($_SERVER["REQUEST_URI"], 1, $end-1); $channelConfig = pc_base::load_config('channel'); if ( !empty($channel) && isset($channelConfig[$channel]) ) { setcookie("channel", $channel, time()+7*86400, "/"); } } </code>
phpcms의 index.php에 있는 이 코드의 의미는 이해하지만, phpcms에서는 일반적으로 이와 같은 의미인지 모르겠습니다.