vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 2.x Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=4)
-   -   Highlight and link function names inside code (https://vborg.vbsupport.ru/showthread.php?t=35503)

Slynderdale 06-04-2002 06:40 AM

i have it where members can enable and disable it in options but for some reason, even if you disable it, it still shows, heres the code

[php]
if ($bbuserinfo[userid]==0 or $bbuserinfo[showfunclinks]==1) {
/* Highlight function names in [php] */
$allfuncs = get_defined_functions();
$searches = array();
$replaces = array();
foreach ($allfuncs['internal'] as $name) {
$searches[] = "/([^a-z])$name(<\/font><font color=\"" . ini_get('highlight.keyword') . "\">){0,1}( {0,1})\(<\/font>/i";
$replaces[] = "\\1<a href=\"http://www.php.net/$name\" target=\"_blank\">$name</a>\\2\\3(</font>";
}
$buffer = preg_replace($searches, $replaces, $buffer);
/* end Highlight function names in
PHP Code:

 */
  } 

it still highlights and links the code and php boxes

Admin 06-04-2002 06:46 AM

Make sure $bbuserinfo is global in that function.

Slynderdale 06-04-2002 06:55 AM

Hmm, it got rid of the links but the highlighting is still there and it shows ?> at the end of the php code

Slynderdale 06-04-2002 07:05 AM

also the ?> if its enabled and some links arent linked as they do in the code bbcode

Slynderdale 06-04-2002 07:06 AM

heres my php function
[php]
// ###################### Start phphighlite #######################
function phphighlite($code) {
//PHP 4 only

global $bbuserinfo;

if (floor(phpversion())<4) {
$buffer=$code;
} else {
$code = str_replace("<br>", "", $code);
$code = str_replace("<br />", "", $code);
$code = str_replace("&gt;", ">", $code);
$code = str_replace("&lt;", "<", $code);

$code = str_replace("&amp;", "&", $code);
$code = str_replace('$', '\$', $code);
$code = str_replace('\n', '\\\\n', $code);
$code = str_replace('\r', '\\\\r', $code);
$code = str_replace('\t', '\\\\t', $code);

$code = stripslashes($code);

if (!strpos($code,"<?") and substr($code,0,2)!="<?") {
$code="<?\n".trim($code)."\n?>";
$addedtags=1;
}
ob_start();
$oldlevel=error_reporting(0);
highlight_string($code);
error_reporting($oldlevel);
$buffer = ob_get_contents();
ob_end_clean();
if ($addedtags) {
$openingpos = strpos($buffer,'&lt;?');
$closingpos = strrpos($buffer, '?');
$buffer=substr($buffer, 0, $openingpos).substr($buffer, $openingpos+5, $closingpos-($openingpos+5)).substr($buffer, $closingpos+5);
}
$buffer = str_replace("&quot;", "\"", $buffer);
}

if ($bbuserinfo[userid]==0 or $bbuserinfo[showfunclinks]) {
/* Highlight function names in [php] */
$allfuncs = get_defined_functions();
$searches = array();
$replaces = array();
foreach ($allfuncs['internal'] as $name) {
$searches[] = "/([^a-z])$name(<\/font><font color=\"" . ini_get('highlight.keyword') . "\">){0,1}( {0,1})\(<\/font>/i";
$replaces[] = "\\1<a href=\"http://www.php.net/$name\" target=\"_blank\">$name</a>\\2\\3(</font>";
}
$buffer = preg_replace($searches, $replaces, $buffer);
/* end Highlight function names in
PHP Code:

 */
  }

  return 
"</normalfont><table border=\"0\" align=\"center\" width=\"90%\" cellpadding=\"3\" cellspacing=\"1\"><tr><td><font face=\"Arial\" size=1 color=#616889><smallfont><b>PHP:</b></smallfont> <smallfont>(double click the code to copy it)</smallfont></font></td></tr><tr><td class=\"phptable\"><pre>" $buffer "</pre></td></tr></table><normalfont>";



Slynderdale 06-05-2002 04:33 AM

any one know whats wrong?

Slynderdale 06-06-2002 01:34 PM

^bump^

Boofo 06-23-2002 05:40 PM

This is strange. For some reason I don't see this in my options panel.

Show links to function names in code?

I installed the exact same version you have here. :confused:

Quote:

Originally posted by FireFly
Done. Feel free to turn this off in your options.

php-resource.de 08-21-2002 05:02 PM

Quote:

Originally posted by Slynderdale
any one know whats wrong?
did you get it to work?


All times are GMT. The time now is 01:56 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01189 seconds
  • Memory Usage 1,739KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_php_printable
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (9)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete