0

我的索引

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 ?

4

2 回答 2

0

您可以在此处找到包含 PHP 脚本的文档来重新编码您的字符串。内容是一篇法语博客文章,但脚本是中间页面的简单 Gist

于 2014-04-01T12:52:56.870 回答
0

也许 :

header('Content-Type: text/html; charset=utf-8');

在主题上看到使用 PHP 将 HTTP 标头设置为 UTF-8

于 2014-04-01T12:53:44.880 回答