Php convert string to html format

I have a string <div id="myid">...</div>

How would I change this into

...

I have tried a few things but no luck any help?

Update

function get_page(){
  $file = 'file.php';
  $str = file_get_contents($file);
  $str = html_entity_decode($str);
  return $str;
}
$output = get_page();
echo $output;//don't work

FIX

function get_page(){
      $file = 'file.php';
      $str = file_get_contents($file);
      return $str;
    }
    $output = get_page();
    echo html_entity_decode($output);//works

asked Nov 24, 2010 at 13:23

Php convert string to html format

ValVal

17k22 gold badges94 silver badges144 bronze badges

0

The function for that is htmlspecialchars_decode().

Note that for the function to decode quotes, you need to specify the $quote_style parameter.

answered Nov 24, 2010 at 13:24

Php convert string to html format

PekkaPekka

434k137 gold badges964 silver badges1077 bronze badges

18

answered Nov 24, 2010 at 13:34

YeroonYeroon

3,2052 gold badges21 silver badges29 bronze badges

$from = array('<', '>');
$to = array('<', '>');
$string = str_replace($from, $to, $string);

answered Nov 24, 2010 at 13:26

NapasNapas

2,6093 gold badges28 silver badges31 bronze badges

1

use this it's better ...

Test paragraph.

Other text'; echo strip_tags($text); echo "\n"; // Allow

and echo strip_tags($text, '

'); ?>

answered Dec 24, 2013 at 2:40

Php convert string to html format

htmlspecialchars_decode($string)

Conner

29.2k8 gold badges51 silver badges73 bronze badges

answered Nov 24, 2010 at 13:24

Php convert string to html format

PeeHaaPeeHaa

69.8k57 gold badges185 silver badges259 bronze badges

Not the answer you're looking for? Browse other questions tagged php character or ask your own question.

❮ PHP String Reference

Example

Convert HTML entities to characters:

$str = '<a href="https://www.w3schools.com">w3schools.com</a>';
echo html_entity_decode($str);
?>

The HTML output of the code above will be (View Source):

w3schools.com

The browser output of the code above will be:



Definition and Usage

The html_entity_decode() function converts HTML entities to characters.

The html_entity_decode() function is the opposite of htmlentities().


Syntax

html_entity_decode(string,flags,character-set)

Parameter Values

ParameterDescription
string Required. Specifies the string to decode
flags Optional. Specifies how to handle quotes and which document type to use.

The available quote styles are:

  • ENT_COMPAT - Default. Decodes only double quotes
  • ENT_QUOTES - Decodes double and single quotes
  • ENT_NOQUOTES - Does not decode any quotes

Additional flags for specifying the used doctype:

  • ENT_HTML401 - Default. Handle code as HTML 4.01
  • ENT_HTML5 - Handle code as HTML 5
  • ENT_XML1 - Handle code as XML 1
  • ENT_XHTML - Handle code as XHTML
character-set Optional. A string that specifies which character-set to use.

Allowed values are:

  • UTF-8 - Default. ASCII compatible multi-byte 8-bit Unicode
  • ISO-8859-1 - Western European
  • ISO-8859-15 - Western European (adds the Euro sign + French and Finnish letters missing in ISO-8859-1)
  • cp866 - DOS-specific Cyrillic charset
  • cp1251 - Windows-specific Cyrillic charset
  • cp1252 - Windows specific charset for Western European
  • KOI8-R - Russian
  • BIG5 - Traditional Chinese, mainly used in Taiwan
  • GB2312 - Simplified Chinese, national standard character set
  • BIG5-HKSCS - Big5 with Hong Kong extensions
  • Shift_JIS - Japanese
  • EUC-JP - Japanese
  • MacRoman - Character-set that was used by Mac OS

Note: Unrecognized character-sets will be ignored and replaced by ISO-8859-1 in versions prior to PHP 5.4. As of PHP 5.4, it will be ignored an replaced by UTF-8.



Technical Details

Return Value:Returns the converted string
PHP Version:4.3.0+
Changelog:PHP 5.6 - Changed the default value for the character-set parameter to the value of the default charset (in configuration).
PHP 5.4 - Changed the default value for the character-set parameter to UTF-8.
PHP 5.4 - Added ENT_HTML401, ENT_HTML5, ENT_XML1 and ENT_XHTML.
PHP 5.0 - Added support for multi-byte encodings

More Examples

Example

Convert some HTML entities to characters:

$str = "Albert Einstein said: 'E=MC²'";
echo html_entity_decode($str, ENT_COMPAT); // Will only convert double quotes
echo "
";
echo html_entity_decode($str, ENT_QUOTES); // Converts double and single quotes
echo "
";
echo html_entity_decode($str, ENT_NOQUOTES); // Does not convert any quotes
?>

The HTML output of the code above will be (View Source):

Albert Einstein said: 'E=MC²'

Albert Einstein said: 'E=MC²'

Albert Einstein said: 'E=MC²'

The browser output of the code above will be:

Albert Einstein said: 'E=MC²'
Albert Einstein said: 'E=MC²'
Albert Einstein said: 'E=MC²'


Example

Convert some HTML entities to characters, using the Western European character-set:

$str = "My name is Øyvind Åsane. I'm Norwegian.";
echo html_entity_decode($str, ENT_QUOTES, "UTF-8");
?>

The HTML output of the code above will be (View Source):

My name is Øyvind Åsane. I'm Norwegian.

The browser output of the code above will be:

My name is Øyvind Åsane. I'm Norwegian.



❮ PHP String Reference


How can I write HTML text in PHP?