PHP utf8_decode() Function
Definition and Usage
The utf8_decode() function decodes a UTF-8 string to ISO-8859-1.
This function converts an ISO-8859-1 string encoded in UTF-8 to a single-byte ISO-8859-1 string.
If successful, the function will return the decoded string; otherwise, it will return false.
Syntax
utf8_decode(string)
Parameter | Description |
---|---|
string | Required. Specifies the string to be decoded. |