View Single Post
  #108  
Old 03-05-2004, 09:49 AM
Roderik Roderik is offline
 
Join Date: Sep 2002
Location: Belgium
Posts: 10
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

as i said, was bored, didn't even install the mod yet zo i based what $keywords would be from the little example at the mySQL manual

Quote:
* What about complete phrases enclosed by quotes?
I think your implementation will treat it as individual words.
it does indeed, and it will break if you try but that can be fixed by

PHP Code:
    $lastgood 0;
    
$lastsign true;
    
    for (
$i=0$i sizeof($kw); $i++){
        if (
$kw[$i]{0} == '+'){
            
array_push($kwplussubstr($kw[$i], 1));
            
$lastgood++;
            
$lastsign true;
        } else if (
$kw[$i]{0} == '-'){
            
array_push($kwminsubstr($kw[$i], 1));
            
$lastgood++; 
            
$lastsign false;  
        } else {
            if (
$lastsign){
                
$kwplus[$lastgood] .= ' ' $kw[$i];         
            } else {
                
$kwmin[$lastgood] .= ' ' $kw[$i]; 
            }
        }      
    } 

Quote:
* What about asterisk?
I think this is a major problem. If I search for hack (with mySQL 4) it would not return rows containing hacks - your implementation would.
If I search for hack* (with mySQL 4) it would return rows containing hack, hacks, etc. - your implementation would return nothing.
indeed, also true , just stripping these special chars would do the trick, only thing, searching for hack* could be betaHacks as well.

But it can be fixed too , by replacing * with % and in the code that builds of the sql we remove the %'s from the strings

Quote:
* What about negation?
It seems like you don't support this at all, treating it as part of a word.
Now if I search for ~vB3 (with mySQL 4) it would return rows that do not contain vB3, your implementation would return those only.
you can use + and -, so the - does negation
name NOT LIKE '%".$kwmin[$i]."%'
so name won't contain $kwmin[$i]

what does the ~do other than de - ?

Quote:
* What about sub-expressions?
yeah that doesn't work it's a backward fix, if everyting was so easy they would have put it in in version 1

Quote:
* What if you do not put a plus/miuns in front of a word?
It seems link in this case your implementation would strip off the first character and treat them as NOT words.
also correct, partially fixed in the code above. But it does indeed depend on the correct input from the script that calls it.
Reply With Quote
 
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01163 seconds
  • Memory Usage 1,793KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD_SHOWPOST
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_php
  • (5)bbcode_quote
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_box
  • (1)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit_info
  • (1)postbit
  • (1)postbit_onlinestatus
  • (1)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • reputationlevel
  • showthread
Included Files:
  • ./showpost.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showpost_start
  • bbcode_fetch_tags
  • bbcode_create
  • postbit_factory
  • showpost_post
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • showpost_complete