このコードの何が問題になっていますか?
$a = Array (
"password" => "SeRjQRVUglkeM‰‰P9L7NsjKXOY", //it's encrypted with a custom encryption system
"id" => 0
);
echo json_encode($a);
私は何を得ていますか:
{"password":null,"id":0}
私が欲しい出力は何ですか:
{"password":"SeRjQRVUglkeM‰‰P9L7NsjKXOY","id":0}