728x90
흔하진 않지만 nusoap을 이용하는 API들을 사용해야 할때가 있다.
설정이 맞지 않으면 한글이 "???" 와 같이 표시된다.
아래와 같이 설정하면 정상적으로 표시 된다.
$client = new nusoap_client(/*ENDPOINT*/);
$client->decode_utf8 = FALSE;
$client->soap_defencoding = "UTF-8";
$client->setHeaders("Content-Type: text/xml;charset=UTF-8");
출처: https://stackoverflow.com/questions/20887830/return-utf-8-farsi-string-from-nusoap-webservice
'내가 자꾸 까먹어서 쓰는 개발 이야기 > PHP' 카테고리의 다른 글
composer require 시 "proc_open(): fork failed - Cannot allocate memory" 오류 발생하는 경우 (0) | 2020.03.24 |
---|---|
Deployer (DeployPHP) 주의사항 (0) | 2020.02.19 |
[Composer] proc_open(): fork failed - Cannot allocate memory 오류 (0) | 2019.10.11 |
Deployer로 배포할때 Slack에 알림 보내기 (0) | 2018.08.21 |
PHP로 메일 발송 시 한글이 깨질때 (0) | 2018.03.15 |
최근댓글