[PHP] pobierz, plaintext <?php$emots=array(array('?','zap.gif'),array('!','wyk.gif') );for($i=0;$i<count($emots);i++){ $source=str_replace($emots[$i][0],"<img src=".$emots[$i][1].">",$source); return ($source);}echo "Witam ?";?>[PHP] pobierz, plaintext
[PHP] pobierz, plaintext <?phpfunction emotki($source) { $emots = array('?' => 'zap.gif', '!' => 'wyk.gif'); foreach($emots as $string => $emotka) $source = str_replace($string,"<img src=".$emotka.">",$source);return ($source);} echo(emotki('Witam ?'));?>[PHP] pobierz, plaintext