GIDForums  

Go Back   GIDForums > Computer Programming Forums > MySQL / PHP Forum > PHP Code Library
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

 
 
Thread Tools Search this Thread Rate Thread
  #1  
Old 26-Jan-2003, 09:38
JdS's Avatar
JdS JdS is offline
Senior Member
 
Join Date: Aug 2001
Location: KUL, Malaysia
Posts: 3,371
JdS will become famous soon enough

[function] BBCodes Collection


The following functions are reference material for the following article: [gid=http://www.desilva.biz/php/bbcode1.html]Create PHP BBCodes[/gid].
  #2  
Old 26-Jan-2003, 09:48
JdS's Avatar
JdS JdS is offline
Senior Member
 
Join Date: Aug 2001
Location: KUL, Malaysia
Posts: 3,371
JdS will become famous soon enough

[function] Process BBcodes: [PHP] tags


PHP Code:

<?php

// NAME: processbb_php()
// VERSION: 1.0
// AUTHOR: J de Silva
// DESCRIPTION: processes [php ] bbcode tags
// 
// TYPE: function
// --------------------
function processbb_php( &$str ) 
{ 
  // nb. parameter passed by reference
  $c = preg_match_all( '/\\[php\\](.*)\\[\\/php\\]/isU', $str, $m );
  if( $c!=0 ): // [ php ] tags found
    for( $i=0; $i<$c; $i++ ):
      $counter[] = '[php'.$i.']'; // unique markers
      $code = '<p><span style="font-weight:bold">PHP:'
              .'</span><br />'
              .highlight_string( $m[1][$i], true )
              .'</p>';
      // append to our existing $bb_codes array
      $GLOBALS['bb_codes']['[php'.$i.']'] = $code;
    endfor;
    // remove the [ php ] tags + source codes from
    // $str and replace with unique markers
    $str = str_replace( $m[0], $counter, $str );
  endif;
}
// --------------------
// USE:
//
// please see link below...
?>


coming soon
 
 

Recent GIDBlogLast Week of IA Training by crystalattice

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are Off
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
[function] Converting Bytes JdS PHP Code Library 4 11-Jan-2007 05:12
[function] Show limited words of a string / text JdS PHP Code Library 0 05-Jun-2003 09:25
[Function] Int to Money Conversion Elmseeker PHP Code Library 1 30-Jan-2003 23:10
[function] Validate Email Addresses I JdS PHP Code Library 0 23-Jan-2003 03:21
[function] Timer JdS PHP Code Library 0 18-Jan-2003 18:11

Network Sites: GIDNetwork · GIDWebHosts · GIDSearch · Learning Journal by J de Silva, The

All times are GMT -6. The time now is 15:56.


vBulletin, Copyright © 2000 - 2008, Jelsoft Enterprises Ltd.