bbcode_create Create a BBCode Ressource &reftitle.description; ressourcebbcode_create arraybbcode_initial_tags This function starts a new BBCode Ressource used to pars BBCode strings &reftitle.parameters; bbcode_initial_tags It's an associative array containing tag name as keys and parameters needed to correctly parse BBCode as value in an associative array of the form: flags optional - a flag set based on the BBCODE_FLAGS_* constants. type needed - an int indicating the type of tag use the BBCODE_TYPE_* constants open_tag needed - the HTML replacement for the open tag. close_tag needed - the HTML replacement for the close tag. default_arg optional - it gives the default argument if tag_type is of type OPTARG content_handling optional - Gives the name of the function used as callback for modification of the content - currently only supports functions not methods. callback layout is: function name($content,$argument){return $content;} param_handling optional - Gives the name of the function used as callback for modification of the argument - currently only supports functions not methods. callback layout is: function name($content,$argument){return $parameter;} childs optional - List of accepted childs for the tag. The format of the list is a comma separated string. If the list starts with ! it will be the list of rejected childs for the tag. parent optional - List of accepted childs for the tag. The format of the list is a comma separated string. &reftitle.returnvalues; Returns a BBCode_Container &reftitle.examples; <function>bbcode_create</function> example array('type'=>BBCODE_TYPE_ROOT, 'childs'=>'!i'), 'i'=> array('type'=>BBCODE_TYPE_NOARG, 'open_tag'=>'', 'close_tag'=>'', 'childs'=>'b'), 'url'=> array('type'=>BBCODE_TYPE_OPTARG, 'open_tag'=>'', 'close_tag'=>'', 'default_arg'=>'{CONTENT}' 'childs'=>'bi'), 'img'=> array('type'=>BBCODE_TYPE_NOARG, 'open_tag'=>'', 'childs'=>''), 'b'=> array('type'=>BBCODE_TYPE_NOARG, 'open_tag'=>'', 'close_tag'=>''), ); $text=<< ]]> &example.outputs; Bold Text Italic Text http://www.php.net/ Content Text [img]http://static.php.net/www.php.net/images/php.gif[/img] ]]>