アラビア文字を含むjsonを書くと、疑問符として表示されます。json encodeアラビア語の問題
$con = mysqli_connect($host,$username,$password,$db);
$q = mysqli_query($con,'select `product_id`, `product_name`, `sku`, `price`, `final_price`, `minimal_price`, `special_price`, `image`, `small_image`, `thumb_image`, `short_description`, `href`, `is_favorite`, `category_name` from products_uae_ar');
mysqli_query($con, "SET NAMES 'utf8'");
mysqli_query($con, "SET CHARACTER SET 'utf8'");
print_r(json_encode($output));
ありがとうRiggsFollyこれは問題を解決する接続文字列の後にこの行を追加するmysqli_set_charset($ con、 'utf8mb4'); –