Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 Programming Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 01-19-2005, 12:43 PM
sabret00the's Avatar
sabret00the sabret00the is offline
 
Join Date: Jan 2003
Location: London
Posts: 5,268
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default explode()

i've always managed to avoid this up until now but now i really need it.

basically i want to check is a table column has a value, if it does, i need to explode it

so up to here i gues it's

PHP Code:
if ($bbuserinfo[grps])
 {
     
$grps_ids explode(' 'trim($bbuserinfo['grps'])); 
but once it's exploded how do i check the values?

with a query i'm guessing i could've used the FIND_IN_SET but i'm really trying to limit the queries at this stage

also how would i go about updating such a column? would it simply be

PHP Code:
UPDATE user SET grps $bbuserinfo[grps] + $newvalue 
?
Reply With Quote
  #2  
Old 01-19-2005, 12:52 PM
Andreas's Avatar
Andreas Andreas is offline
 
Join Date: Jan 2004
Location: Germany
Posts: 6,863
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

PHP Code:
if (in_array($grps_ids11)) {
  
// Put some code here if 11 is in grps_ids

[sql]update user set grps = if(grps='', $newvalue, concat_ws(' ', grps, $newvalue))[/sql]
Reply With Quote
  #3  
Old 01-19-2005, 12:53 PM
amykhar's Avatar
amykhar amykhar is offline
 
Join Date: Oct 2001
Location: PA
Posts: 4,438
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Given that explode puts the values in an array, could you use this:

http://us4.php.net/in_array

to see if the value is in the array?
Reply With Quote
  #4  
Old 01-19-2005, 12:58 PM
sabret00the's Avatar
sabret00the sabret00the is offline
 
Join Date: Jan 2003
Location: London
Posts: 5,268
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

you both helped and so close together, thank you amy thanks to the link i know exactly how it works, and thanks kirby, very swift and you helped em with the query too
Reply With Quote
  #5  
Old 01-23-2005, 11:41 AM
sabret00the's Avatar
sabret00the sabret00the is offline
 
Join Date: Jan 2003
Location: London
Posts: 5,268
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by KirbyDE
[sql]update user set grps = if(grps='', $newvalue, concat_ws(' ', grps, $newvalue))[/sql]
how would i go about reversing this query?
Reply With Quote
  #6  
Old 01-23-2005, 11:54 AM
noppid noppid is offline
 
Join Date: Mar 2003
Location: Florida
Posts: 1,875
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

No offense, but I was going to post a link to php.net too. Most of the questions you've asked so far on php functions are answered on top of each functions page and clearly explained. I was under the impression you didn't have that info from your questions.

and iif() is being deprecated, you shouldn't rely on it existing in future releases of vB.
Reply With Quote
  #7  
Old 01-23-2005, 11:58 AM
sabret00the's Avatar
sabret00the sabret00the is offline
 
Join Date: Jan 2003
Location: London
Posts: 5,268
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

i'm not usuing the iff in here though

ok i'm assuming you're talking about the other thread, i appreciate where you're comign from however asking for help in a bid to learn something should never be frowned upon, in that latest incident where i was asking about the conditional, it was actually the conditional and not the in_array() function, if you check the thread again, you'll see i actually state that i was just wondering if i could do that, also in regards to the number of threads i ask for help, i do actually in around half cases get the answers myself, it's called the process of learning.
Reply With Quote
  #8  
Old 01-23-2005, 12:04 PM
noppid noppid is offline
 
Join Date: Mar 2003
Location: Florida
Posts: 1,875
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Wow you're right, Sorry I said anything, you got it handled.

On the iif, you're right, I was seeing double. I didn't have my glasses on.

If() does not return anything other then true or false, I assumed iif() since you seem to be expecting a data return for that code to work.

Actually, if() does not return anything at all, it evaluates to true or false.
Reply With Quote
  #9  
Old 01-23-2005, 12:25 PM
sabret00the's Avatar
sabret00the sabret00the is offline
 
Join Date: Jan 2003
Location: London
Posts: 5,268
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

searching php.net, i couldn't find concat_ws that's why i came back to this thread, as the value in grps could be an array of 10 different numbers, so i want to remove the one that would be in the first post $newvalue and that's it, but not being able to find concat i can't even read up on it.
Reply With Quote
  #10  
Old 01-23-2005, 12:39 PM
Dean C's Avatar
Dean C Dean C is offline
 
Join Date: Jan 2002
Location: England
Posts: 9,071
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

concat_ws is a mysql function sabe:

http://dev.mysql.com/doc/mysql/en/string-functions.html
Reply With Quote
Reply


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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 12:04 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.03926 seconds
  • Memory Usage 2,254KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (3)bbcode_php
  • (1)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (10)postbit
  • (10)postbit_onlinestatus
  • (10)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • 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
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete