vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   preg_replace problem (https://vborg.vbsupport.ru/showthread.php?t=81960)

sabret00the 05-24-2005 02:00 PM

preg_replace problem
 
i'm getting a "Delmiter must not be alpha numeric or a backslash on this line
PHP Code:

        $findme  'images/smilies';
        
$pos strpos($post[usertitle], $findme);
        if (
$pos == TRUE)
        {
            
preg_replace('img src="''img src="$vboptions[bburl]/'"$post[usertitle]");
        } 

what am i doing wrong?

Zero Tolerance 05-24-2005 02:52 PM

You really don't need preg_replace(), it uses more resources, you could do it easily with str_replace:
PHP Code:

            $post[usertitle] = str_replace('img src="''img src="$vboptions[bburl]/'$post[usertitle]); 

:)

- Zero Tolerance

sabret00the 05-24-2005 03:22 PM

ah ok, nice one, that fixed it, though i needed to ' . $vbulletion[bburl] . ' :)

Zero Tolerance 05-25-2005 11:28 AM

Quote:

Originally Posted by sabret00the
ah ok, nice one, that fixed it, though i needed to ' . $vbulletion[bburl] . ' :)

Yeah using single quotes for a string stops php from parsing it out, which is good if you don't want it parsing out, so if you use plain text for a lot of variables, good to use single quotes, it won't make much of a resource difference, but every little helps :)

- Zero Tolerance


All times are GMT. The time now is 09:23 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.00976 seconds
  • Memory Usage 1,723KB
  • 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
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (4)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
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete