I have a PHP script that extracts an XML file from a MYSQL. I have the following line:
$xml='<?xml version="1.0" encoding="UTF-16"?>;
But the extracted file is being recognized as UTF-8 UNIX (LF):
I need to have the encoding as UTF-16 and Windows CLRF. What is the correct syntax?
Any help is appreciated.