Van [img] <img src maken
Hallo, hoe kan je (checktitel) dat doen,
zo iets?
ik gebruik dit:
hier nog wat meer functies, deze gebruik ik zelf ook. Deze wordt gebruikt bij het bekijken.
heel erg bedankt voor het helpen!!! het is gelukt!
@ php newbie
Ga ik doen!
weet trouwens iemand ook nog hoe je code kan verkleuren netzals hier?
edit:
ik heb dit gevonde http://www.phphulp.nl/nieuws/94/archive/
waar valt dat te downloaden?? @ arjan die vna jou ponzi, ik heb m toch wel gevonde:P
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
$string = 'Hoe vind je mijn plaatje [img]http://www.mijnwebsite.nl/images/logo.jpg[/img]?';
echo replaceIMG($string);
function replaceIMG($string)
{
$tag_open = '[img]';
$tag_close = '[/img]';
$index_open = strpos($string, $tag_open);
$index_close = strpos($string, $tag_close, $tag_close);
$img_url = substr($string, $index_open + strlen($tag_open), $index_close - ($index_open + strlen($tag_open)));
$result = substr($string, 0, $index_open) . '<img alt="" border="" src="' . htmlentities($img_url) . '">' . substr($string, $index_close + strlen($tag_close));
return $result;
}
?>
$string = 'Hoe vind je mijn plaatje [img]http://www.mijnwebsite.nl/images/logo.jpg[/img]?';
echo replaceIMG($string);
function replaceIMG($string)
{
$tag_open = '[img]';
$tag_close = '[/img]';
$index_open = strpos($string, $tag_open);
$index_close = strpos($string, $tag_close, $tag_close);
$img_url = substr($string, $index_open + strlen($tag_open), $index_close - ($index_open + strlen($tag_open)));
$result = substr($string, 0, $index_open) . '<img alt="" border="" src="' . htmlentities($img_url) . '">' . substr($string, $index_close + strlen($tag_close));
return $result;
}
?>
zo iets?
Gewijzigd op 01/01/1970 01:00:00 door Martijn Wieringa
Code (php)
1
2
3
2
3
<?php
$img = preg_replace("/\[img\](.+?)\[\/img\]/", "<img src=$1 alt=\"plaatje\">", $string);
?>
$img = preg_replace("/\[img\](.+?)\[\/img\]/", "<img src=$1 alt=\"plaatje\">", $string);
?>
die werkte in het los goed, maar ik heb geen enkel id hoe ik dat bericht dat nu gwn word geochoed op de pagina kan filteren met behulp van script
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
$inhoud = nl2br($inhoud);
$inhoud = str_replace('[b]', '<b>', $inhoud);
$inhoud = str_replace('[/b]', '</b>', $inhoud);
$inhoud = str_replace('[u]', '<u>', $inhoud);
$inhoud = str_replace('[/u]', '</u>', $inhoud);
$inhoud = str_replace('[i]', '<i>', $inhoud);
$inhoud = str_replace('[/i]', '</i>', $inhoud);
$inhoud = str_replace('[url=', '<a target="_blank" href="', $inhoud);
$inhoud = str_replace('[/url]', '</a>', $inhoud);
$inhoud = str_replace('[img=', '<img src="', $inhoud);
//Deze str_replace hieronder altijd als laatste neerzetten
$inhoud = str_replace(']', '">', $inhoud);
echo $inhoud;
?>
$inhoud = nl2br($inhoud);
$inhoud = str_replace('[b]', '<b>', $inhoud);
$inhoud = str_replace('[/b]', '</b>', $inhoud);
$inhoud = str_replace('[u]', '<u>', $inhoud);
$inhoud = str_replace('[/u]', '</u>', $inhoud);
$inhoud = str_replace('[i]', '<i>', $inhoud);
$inhoud = str_replace('[/i]', '</i>', $inhoud);
$inhoud = str_replace('[url=', '<a target="_blank" href="', $inhoud);
$inhoud = str_replace('[/url]', '</a>', $inhoud);
$inhoud = str_replace('[img=', '<img src="', $inhoud);
//Deze str_replace hieronder altijd als laatste neerzetten
$inhoud = str_replace(']', '">', $inhoud);
echo $inhoud;
?>
heel erg bedankt voor het helpen!!!
welke heb je gebruikt?
je kunt ook even zoeken naar een ubb parser, want dat is wat je zoekt.
@ php newbie
Ga ik doen!
weet trouwens iemand ook nog hoe je code kan verkleuren netzals hier?
edit:
ik heb dit gevonde http://www.phphulp.nl/nieuws/94/archive/
waar valt dat te downloaden??
Gewijzigd op 01/01/1970 01:00:00 door Dion
Nergens Dion, het is gewoon een vernieuwing van een tijdje geleden op dit forum. Ga gewoon eens de scriptlib af, er zijn er een hele hoop te vinden. (Tip: Zoekterm: ubb ;-))
Des te beter voor jou ;-) !