Logo

String Functions

addcslashes addslashes bin2hex chop chr chunk_split convert_uudecode convert_uuencode count_chars crc32 crypt explode fprintf get_html_translation_table hebrev hex2bin html_entity_decode htmlentities htmlspecialchars htmlspecialchars_decode implode join lcfirst levenshtein localeconv ltrim md5 md5_file metaphone nl2br nl_langinfo number_format ord parse_str printf quoted_printable_decode quoted_printable_encode quotemeta rtrim setlocale sha1 sha1_file similar_text soundex sprintf sscanf str_contains str_decrement str_ends_with str_getcsv str_increment str_ireplace str_pad str_repeat str_replace str_rot13 str_shuffle str_split str_starts_with str_word_count strcasecmp strchr strcmp strcoll strcspn strip_tags stripcslashes stripos stripslashes stristr strlen strnatcasecmp strnatcmp strncasecmp strncmp strpbrk strpos strrchr strrev strripos strrpos strspn strstr strtok strtolower strtoupper strtr substr substr_compare substr_count substr_replace trim ucfirst ucwords utf8_decode utf8_encode vfprintf vprintf vsprintf wordwrap

utf8_encode

Supported Versions: PHP 4, PHP 5, PHP 7, PHP 8
Converts a string from ISO-8859-1 to UTF-8
<?php utf8_encode(string $string): string
Logo statamic/cms statamic/cms
<?php     protected function fieldtype($request)

    {

        $config = json_decode(utf8_encode(base64_decode($request->config)), true);



        return Fieldtype::find($config['type'])->setField(

            new Field('relationship', $config)
src/Http/Controllers/CP/Fieldtypes/RelationshipFieldtypeController.php