繁体   English   中英

在PHP中将JSON转换为UTF-8问题

[英]Converting JSON to UTF-8 issues in PHP

因此,我有一个程序,该程序允许用户将信息输入表单,并在提交后将信息转换为JSON文件。 当用户转到程序的其他部分时,程序将检索JSON文件并从中构建调查表。

JSON文件的构建工作正常,但是每当我尝试检索该文件时,都会收到一个错误,指出JSON以ASCII和NULL的形式返回。 我已经完成作业,看到这通常是在它们发生编码冲突时发生的(即使ASCII是UTF-8的子集...)。

因此,我确保在创建文件时使用的是mb_convert_encoding($x, 'UTF-8', 'auto'); 以确保将JSON正确编码为UTF-8。

我在检索JSON时也使用了mb_convert_encoding,但是看到双重编码会导致问题,因此当我删除该片段时,它不再回显编码的内容(使用mb_detect_encoding),但它仍然为NULL。

我什至可以将JSON文件下拉,另存为UTF-8并重新上传。

非常感谢您对此提供的所有帮助。 我为此摔了两天。 如果有区别,它内置在Code Ignitor中

这是创建JSON文件的代码:

        $thisClient = $this->input->cookie('client');
$date = "%m-%Y";
$date = mdate($date);
$clientDir = *********PATH TO CREATE THE DIRECTORIES IN;
$dialogDir = $clientDir."/".$date;
$d_file_name = $thisClient.'-'.$date;


//check to see if client directory exists, if it doesn't then it creates it 
if(!is_dir($clientDir)){
    mkdir($clientDir, 0755, TRUE);  
    echo "Client Directory Created!<br>";
} else{
    echo "No Client Directory Created!<br>";
}


//check to see if client directory exists, if it doesn't then it creates it 
if(!is_dir($dialogDir)){
    mkdir($dialogDir, 0755, TRUE);  
    echo "DIALOG Directory Created!<br>";
} else{
    echo "No DIALOG Directory Created!<br>";
}

$custDialog = array();


if(isset($_POST['cust-dialog-title'])){

    function encodeMe($x){
        //this ensure proper encoding
        return mb_convert_encoding($x, 'UTF-8', 'auto');
    }

    $customDialog = array();

    for($i = 0; $i < count($_POST['cust-dialog-title']); $i++){

        $customDialog[$i]["title"] = encodeMe($_POST['cust-dialog-title'][$i]);

        $customDialog[$i]["intro"] = encodeMe($_POST['cust-dialog-intro'][$i]);


            for($ii = 0; $ii < count($_POST['cust-dialog-quest-'.$i]); $ii++){
                $customDialog[$i]["questions"]["q".$ii] = encodeMe($_POST['cust-dialog-quest-'.$i][$ii]);


                if($_POST["cust-dialog-pos-".$i."-".$ii] == "TRUE"){
                    //if the question is a true positive
                    $customDialog[$i]["questions"]["agree"] = -5;
                    $customDialog[$i]["questions"]["disagree"] = 5;
                } else{
                    //if the question is a false positive
                    $customDialog[$i]["questions"]["agree"] = 5;
                    $customDialog[$i]["questions"]["disagree"] = -5;

                }
            }

            $jsonDIALOG = json_encode($customDialog);

            $jsonDIALOG = str_replace("[", " ", str_replace("]", " ", $jsonDIALOG));


            if ( ! write_file($dialogDir."/".$d_file_name.".json", $jsonDIALOG )) {
                     echo 'Unable to write the file';
                } else {
                     echo 'File written!';
                }

            //save Custom DIALOG info in database
            ***********DATABASE INFO**************



    }



}

这是检索JSON对象的代码:

if($row["custom"] !== null){ //If the Dialog is a Custom Dialog



        $path = str_replace(*****removes an unnecessary portion from the path string**);

            $thisDialog = file_get_contents(****PATH TO JSON FILES*****);
            //THE FOLLOWING helps debug issues with the JSON -- displays order number and dialog being called -- uncomment to use
            //echo $i.' is '.$curDialog[$i]. '<br>';  
            //$thisDialog = substr($thisDialog,1);
            //echo $thisDialog;

            //THIS IS THE CODE FOR DEBUGGING ENCODING ISSUES
            //$thisDialog = mb_convert_encoding($thisDialog, 'UTF-8', 'ASCII');
            //echo mb_detect_encoding($thisDialog);


            $jsonDialog = json_decode($thisDialog, true);

            echo var_dump($jsonDialog); 


            if($jsonDialog){

                $allDialogs = $jsonDialog;

            } else { 
                echo "Error: Invalid Dialog. Call Order# 0<br>" ;
            }

                return $allDialogs;


    }

我提供了一些调试过的东西,我已经尝试过并注释掉了。 谢谢!!

您可能应该将JSON_UNESCAPED_UNICODE作为选项添加到json_encode 请记住,此常量自PHP 5.4.0起可用

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM