Beheerder |
|
Je kan vanaf php5 ook $n gebruiken naast \\n
Andere ga ik even testen. Bedankt alvast.
Dat lost het probleem ook niet op. helaas.
Edit
Sinds php4
Oplossing:
<?php
$value = '<h1 style="background-color: #000; color: #FFF;">Dit is de titel</h1>Dit is de bodytekst';
preg_match_all('/<h1(.*?)>(.*?)<\/h1>/i', $value, $matches, PREG_SET_ORDER);
echo $matches[0][1] . '<br />'; //Stijl
echo $matches[0][2]; //Titel
?>
<?php $value = '<h1 style="background-color: #000; color: #FFF;">Dit is de titel</h1>Dit is de bodytekst'; preg_match_all('/<h1(.*?)>(.*?)<\/h1>/i', $value, $matches, PREG_SET_ORDER ); echo $matches[0][1] . '<br />'; //Stijl echo $matches[0][2]; //Titel ?>
|