Reacties op het script Ubb functie
|
Gepost op: 27 december 2005 - 11:39 |
|
|
|
Crew algemeen
|
<?php
foreach($smiles as $smile=>$image){
$text = str_replace($smile,"<img src=http://hierjesite.nl/images/smilies/".$image.".gif>", $text);
}
?>
<?php foreach($smiles as $smile=>$image){ $text = str_replace($smile,"<img src=http://hierjesite.nl/images/smilies/".$image.".gif>", $text); } ?>
foreach lus is in princiepe niet nodig.
Dit doet str_replace zelf als het een array aantreft, b.v.:
<?php
$codes = array(":)", ":-)", ";)");
$figuren = array("smile","smile","knipoog");
$output = str_replace($codes,$figuren,":) :-) ;)");
// OUTPUT: smile smile knipoog
?>
<?php $codes = array(":)", ":-)", ";)"); $figuren = array("smile","smile","knipoog"); // OUTPUT: smile smile knipoog ?>
|
|
|
|
Gepost op: 08 februari 2006 - 18:30 |
|
|
|
PHP expert
|
K mis ook de comment in dit hele script. :S |
|
|
|
Gepost op: 05 november 2007 - 13:26 |
|
|
|
Nieuw lid
|
Fatal error: Cannot redeclare replace() (previously declared
ik krijg deze fout ligt het aan het script of doe ik iets niet goed ??? |
|
|
|
Gepost op: 05 december 2007 - 18:36 |
|
|
|
Nieuw lid
|
Goed script heb hem toegevoegd aan een script dat ik al had en t werkt perfect! |
|
|
Enkel aanvullende informatie, vragen en antwoorden op vragen zijn welkom. |
|
|
|