By editor, 4 October, 2016 Question How to Encode and decode HTML entitys with drupal 8 ? Basic php and drupal 7 / 8 Examples 1. $string_out = html_entity_decode($string, ENT_QUOTES, 'UTF-8') //Do not forget ENT_QUOTES and 'UTF-8', otherwise quotes will not decodes. 2. $string_out = check_plain($string) //Same as : $text = htmlspecialchars($text, ENT_QUOTES, 'UTF-8'); 3. Transliterate $string = "The string to transliterate"; $trans = \Drupal::transliteration(); $string = $trans->transliterate($string, 'en'); Tags Drupal 8 Code Drupal 7 PHP Comments You must have JavaScript enabled to use this form. Your name Subject Comment About text formats Plain text No HTML tags allowed. Lines and paragraphs break automatically. Web page addresses and email addresses turn into links automatically.
Comments