내 색인PHP는 UTF-8 인코딩
defined("DS") || define("DS", DIRECTORY_SEPARATOR);
defined("ROOT_PATH") || define("ROOT_PATH", realpath(dirname(__FILE__)));
require_once(ROOT_PATH.DS.'classes'.DS.'Helper.php');
$page = 'default';
$uri = $_SERVER['REQUEST_URI'];
if(!empty($uri)){
$first = substr($uri, 0, 1);
if($first == '/') {
$uri = substr($uri, 1);
}
if(!empty($uri)) {
$uri = explode('?', $uri);
$uri = explode('/', $uri[0]);
$page = array_shift($uri);
}
}
$content = array(
'con' => Helper::getContent($page)
);
if(!empty($_GET['ajax'])) {
echo json_encode($content);
} else {
require_once('temp/temp.php');
}
내 수업
class Helper {
public static function getContent($file = null) {
$file = 'content/'.$file.'.php';
if(is_file($file)) {
ob_start();
require_once($file);
return ob_get_clean();
}
}
}
내가 UTF-8 할 수 involved.How 콘텐츠 페이지 혼합 문자를 표시?
(utf8_encode, $에서 볼 함유량); temp utf8_encode ($ content [ 'con'])에 대해서도 잘 모르겠다. – Cenk