1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
| <?php
ob_start();
$strong = "test|essai";
?>
<html>
<head>
<meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-1">
<meta name="description"
content="TEST">
<meta name="keywords"
content="test,essai,keyword">
<title>TEST</title>
</head>
<body background="backgd03.jpg" text="#000000" link="#0000FF"
vlink="#8E236B" alink="#0000FF">
<p><b>Dernière mise à jour le 13 septembre 2003.</b></p>
<p>test</p>
<p>essai</p>
essai
</body>
</html>
<?php
$output = ob_get_contents();
ob_end_clean();
$output = preg_replace('`'.$strong.'`i', '<strong>$0</strong>', $output);
echo $output;
?> |
Partager