downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | my php.net 
search for in the  

<bbcode_add_elementbbcode_create>
Last updated: Thu, 26 Jun 2008

bbcode_add_smiley

(No version information available, might be only in CVS)

bbcode_add_smiley — Adds a smiley to the parser

Description

bool bbcode_add_smiley ( resource $bbcode_container , string $smiley , string $replace_by )

Adds a smiley to the parser

Parameters

bbcode_container

BBCode_Container resource, returned by bbcode_create().

smiley

The string that will be replaced when found.

replace_by

The string that replace smiley when found.

Return Values

Returns TRUE on success or FALSE on failure.

Examples

Example #1 bbcode_add_smiley() usage example

<?php
/*
 * Prepare the rule set
 */
$arrayBBCode=array(
  
''=>        array('type'=>BBCODE_TYPE_ROOT
                      
'childs'=>'!i'),
  
'b'=>        array('type'=>BBCODE_TYPE_NOARG,
                      
'open_tag'=>'<b>',
                      
'close_tag'=>'</b>'),
  
'u'=>        array('type'=>BBCODE_TYPE_NOARG,
                      
'open_tag'=>'<u>',
                      
'close_tag'=>'</u>',
                      
'flags'=>BBCODE_FLAGS_SMILEYS_OFF),
  
'i'=>        array('type'=>BBCODE_TYPE_NOARG,
                      
'open_tag'=>'<i>',
                      
'close_tag'=>'</i>',
                      
'childs'=>'b'),
);
/*
 * Parsed Text
 */
$text=<<<EOF
[
i] No parse Test [/i] :)
[b] Parsed, with smiley :( [/b]
[u] Parsed, with no smiley :D [/u]
EOF;/*
 * Init the parser
 */
$BBHandler=bbcode_create($arrayBBCode);
/*
 * Add Smiley rules to parser
 */
bbcode_add_smiley($BBHandler, ":)", "<img src=\"smiley.gif\" alt=\":)\" />");
bbcode_add_smiley($BBHandler, ":(", "<img src=\"sad.gif\" alt=\":(\" />");
bbcode_add_smiley($BBHandler, ":D", "<img src=\"happy.gif\" alt=\":D\" />");
bbcode_add_smiley($BBHandler, ":p", "<img src=\"tong.gif\" alt=\":p\" />");
bbcode_add_smiley($BBHandler, ":|", "<img src=\"special.gif\" alt=\":|\" />");
bbcode_add_smiley($BBHandler, ":6:", "<img src=\"six.gif\" alt=\":6:\" />");
/*
 * Parse the text
 */
echo bbcode_parse($BBHandler,$text);
?>

The above example will output:

[i] No parse Test [/i] <img src="smiley.gif" alt=":)" />
<b> Parsed, with smiley <img src="sad.gif" alt=":(" /> </b>
<u> Parsed, with no smiley :D </u>



add a noteadd a note User Contributed Notes
Adds a smiley to the parser
There are no user contributed notes for this page.




<bbcode_add_elementbbcode_create>
Last updated: Thu, 26 Jun 2008
show source | credits | sitemap | contact | advertising | mirror sites
Copyright © 2001-2005 The PHP Group
All rights reserved.
This unofficial mirror is operated at: http://phpbuilder.com/
Last updated: Tue Nov 1 20:20:59 2005 EST
Columns / Articles | Tips / Quickies | News | News Linking and RSS Feeds | Shared Code Library
Mail Archives | Support / Discussion Forums | Get Started! Links | Contribute! | Docs