Nouveau WRInaute
Bonjour,
je souhaiterais savoircomment on peut supprimer un texte après l'identification d'une blaise html.
ex :
l'objectif est de supprimer tout ce qui est au début du paragraphe : <h3> En savoir +</h3>
pour cela j'ai fait ca :
pourriez vous m'orienter ou m'aider ?
merci beaucoup
je souhaiterais savoircomment on peut supprimer un texte après l'identification d'une blaise html.
ex :
Code:
<h3> En savoir +</h3> <p> <span style="font-weight: bold;">Foutas tissées en coton biologique</span><br /> <br /> <span style="font-weight: bold;">Collection "Sand" - Sable & Anis</span>
l'objectif est de supprimer tout ce qui est au début du paragraphe : <h3> En savoir +</h3>
pour cela j'ai fait ca :
Code:
$description = htmlentities($products['description']); // description complète de mon article au format html
if (trim($description) != '') {
if (strpos($description, "</h3>") !== FALSE) {
$r = substr($description, strpos($description, '</h3>'));
}
}
print_r($description .'<br /><br />'); // affiche mon article au format htlm ====> ok
print_r('resultat : ' .$r); => affiche mon article sans le texte dans les balises <h3> En savoir +</h3> ===> [b]or je ne vois rien à l'écran.
[/b]
pourriez vous m'orienter ou m'aider ?
merci beaucoup