|
// $ Document should contain an HTML document.
// In this example, the HTML Tag and javascript code are removed.
// And blank characters. Some common
// Convert the HTML object to the corresponding text.
$ Search = array ("' ] *?>. *? Script 'si ", // remove javascript
"'<[/!] *? [^ <>] *?> 'Si ", // remove the HTML Tag
"'([Rn]) [s] +'", // remove the white space
"'& (Quot | #34);' I", // replaces the HTML Object
"'& (Amp | #38);' I ",
"'& (Lt | #60);' I ",
"'& (Gt | #62);' I ",
"'& (Nbsp | #160);' I ",
"'& (Iexcl | #161);' I ",
"'& (Cent | #162);' I ",
"'& (Pound | #163);' I ",
"'& (Copy | #169);' I ",
"'& # (D +); 'E"); // run as PHP code
$ Replace = array ("",
"",
"\ 1 ",
""",
"&",
"<",
"> ",
"",
Chr (1, 161 ),
Chr (1, 162 ),
Chr (1, 163 ),
Chr (1, 169 ),
"Chr (\ 1 )");
$ Text = preg_replace ($ search, $ replace, $ document );
?> |