vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   eregi vs strpos (https://vborg.vbsupport.ru/showthread.php?t=82577)

sabret00the 06-06-2005 01:10 PM

eregi vs strpos
 
PHP Code:

        while(!feof($newfile))
        {
            
$duplicate fgets($newfile255);
            
// is email address submitted already in the file?
            
$dupe eregi($email$duplicate);
            if(
$dupe == TRUE)
            {
                
$content "Our records show that this email address is already registered";
                
fclose($newfile);
                
//exit;
                
die("$front\n$content\n$back");
            }
        } 

that works fine but
PHP Code:

        while(!feof($newfile))
        {
            
$duplicate fgets($newfile255);
            
// is email address submitted already in the file?
            
$dupe strpos($email$duplicate);
            if(
$dupe == TRUE)
            {
                
$content "Our records show that this email address is already registered";
                
fclose($newfile);
                
//exit;
                
die("$front\n$content\n$back");
            }
        } 

don't, how come?

filburt1 06-06-2005 01:40 PM

If the e-mail address breaks one of the 255-character boundaries, it won't work. You're also checking case-sensitively.

PHP Code:

if (stripos($emailfile_get_contents($filename)) !== false)
{
    echo 
"Duplicate";



sabret00the 06-06-2005 02:34 PM

hmmm, with your code, it's just ignoring the conditional :(

that's what i don't get the code for the eregi shows a true result yet i change it to strpos and it don't work.

actually that might've been human error

Andreas 06-06-2005 02:39 PM

Quote:

Originally Posted by sabret00the
PHP Code:

$dupe strpos($email$duplicate); 


Quote:

Originally Posted by PHP Manual
int strpos ( string haystack, mixed needle [, int offset] )

Returns the numeric position of the first occurrence of needle in the haystack string.

So if you want to check if $email does occur somewhere in $duplicate:

PHP Code:

$dupe strpost($duplicate$email); 

:)

But as filburt1 already said, you should user stripos() if available to avoing casing issues.

sabret00the 06-06-2005 02:49 PM

it's giving me errors
Warning: file_get_contents() expects parameter 1 to be string

PHP Code:

    $filename "../../testfile.txt"//above the root
        
$newfile fopen($filename"r");
            if(
stripos(file_get_contents($newfile), $email) !== false)
            {
                
$content "Our records show that this email address is already registered";
                
fclose($newfile);
                die(
"$front\n$content\n$back");
            } 

nevermind fixed it :)

Quote:

Originally Posted by KirbyDE
So if you want to check if $email does occur somewhere in $duplicate:

PHP Code:

$dupe strpost($duplicate$email); 

:)

But as filburt1 already said, you should user stripos() if available to avoing casing issues.

oops but realised that and fixed it, i have no idea why they do "haystack, needle" when the saying is clearly "needle, haystack" grrr @ then, but thanks kirby :)

Andreas 06-06-2005 03:16 PM

Yeah, it's totally confusing.
I think most other programming languages implement strpos(searchstring, string)

filburt1 06-06-2005 06:50 PM

Yes, it's done logically given that the string to manipulate comes first, and then the arguments for manipulating that string. The arguments are named that way just for clarity, not for matching the phrase.


All times are GMT. The time now is 10:38 PM.

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.01036 seconds
  • Memory Usage 1,752KB
  • 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
  • (7)bbcode_php_printable
  • (3)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (7)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