Answers for "how to use utf-8 encoding json php"

PHP
1

php header utf8 json

header("Content-type: application/json; charset=utf-8");
Posted by: Guest on October-01-2021
2

utf8 encode php

$a = "Não";
  
echo utf8_encode($a);
Posted by: Guest on December-10-2020

Browse Popular Code Answers by Language