Ravens PHP Scripts: Forums
 

 

View next topic
View previous topic
Post new topic   Reply to topic    Ravens PHP Scripts And Web Hosting Forum Index -> PHP
Author Message
Darrell3831
Worker
Worker



Joined: Feb 18, 2004
Posts: 244

PostPosted: Wed Jun 29, 2005 10:42 am Reply with quote

Hi,

I'm trying to write a function that draws cards from a deck contained virtually within a database.

I do not want the function to return duplicate cards. So I need a function that tests an array of intigers to see if one already exists.

What function do you use to see if an intiger already exists within an array?

Here's what I have:

Code:
function draw($num) {

   global $db, $prefix;
   mt_srand((double)microtime() * 1000000); // Seed the generator
   $counter=0;
   $cards = array( 0 => '0' );  // Do I need to do this to ensure that $cards will be an array?
      
   list($total) = $db->sql_fetchrow($db->sql_query("SELECT count(*) FROM ".$prefix."_rtc"));

   while ($counter <= ($num-1)) {
      $num1 = rand(0,($total-1));
      list($id) = $db->sql_fetchrow($db->sql_query("SELECT id FROM ".$prefix."_rtc LIMIT $num1,1"));
// I need a test here that says while $id is not in $cards go ahead and add it. If it is in the cards don't add it and instead incriment the $counter by one so that we draw another card. Does such a function exist? How do you use it?
      $cards[$counter]=$id;
      $counter=$counter+1;
   }

   return $cards;
}


Thanks for your suggestions. I appreciat them all.

Darrell

_________________
http://www.psy-center.com 
View user's profile Send private message Visit poster's website
Raven
Site Admin/Owner



Joined: Aug 27, 2002
Posts: 17088

PostPosted: Wed Jun 29, 2005 11:24 am Reply with quote

in_array()
 
View user's profile Send private message
Darrell3831







PostPosted: Wed Jun 29, 2005 12:02 pm Reply with quote

Thank you!

That's perfect. I just don't know the names of these things..


Code:
function draw($num) {

   global $db, $prefix;

   mt_srand((double)microtime() * 1000000); // Seed the generator
   $counter=0;
   $cards = array( 0 => NULL ); 
      
   list($total) = $db->sql_fetchrow($db->sql_query("SELECT count(*) FROM ".$prefix."_rtc"));

   while ($counter <= ($num-1)) {
      $num1 = rand(0,($total-1));
      if (in_array($num1, $cards))  {
         if ($counter != 0) {
            $counter=$counter-1;
         }
      }
      else {
         list($id) = $db->sql_fetchrow($db->sql_query("SELECT id FROM ".$prefix."_rtc LIMIT $num1,1"));
         $cards[$counter]=$id;
      }
      $counter=$counter+1;
   }
   return $cards;
}


Darrell
 
Darrell3831







PostPosted: Fri Jul 01, 2005 4:16 pm Reply with quote

I spoke too soon. Sad

It's still allowing duplicates.

Does anyone see what might be wrong with the way I'm using in_array()?

Thanks!

Code:
function draw($num) {

   global $db, $prefix;

   mt_srand((double)microtime() * 1000000); // Seed the generator
   $counter=0;
   $cards = array( 0 => '-1' ); 
   
   list($total) = $db->sql_fetchrow($db->sql_query("SELECT count(*) FROM ".$prefix."_rtc"));

   while ($counter <= ($num-1)) {
      $num1 = rand(0,($total-1));
      if (in_array($num1, $cards))  {
         if ($counter != 0) {
            $counter=$counter-1;
         }
      }
      else {
         list($id) = $db->sql_fetchrow($db->sql_query("SELECT id FROM ".$prefix."_rtc LIMIT $num1,1"));
         $cards[$counter]=$id;
      }
      $counter=$counter+1;
   }
   return $cards;
}
 
Darrell3831







PostPosted: Mon Jul 18, 2005 5:40 am Reply with quote

Resolved...
 
Raven







PostPosted: Mon Jul 18, 2005 7:16 am Reply with quote

For posterity, would you share the "resolved" code?
 
Darrell3831







PostPosted: Mon Jul 18, 2005 11:54 am Reply with quote

Sure,

I'd be happy to. I just assumed no one was interested...

It was my fault of course, I had the logic wrong. Very Happy

Code:
function draw($num) {

   global $db, $prefix;

   mt_srand((double)microtime() * 1000000); // Seed the generator
   $counter=0;
   $cards = array( 0 => -1 ); 
   
   list($total) = $db->sql_fetchrow($db->sql_query("SELECT count(*) FROM ".$prefix."_rtc"));

   while ($counter <= ($num-1)) {
      $num1 = rand(0,($total-1));
      list($id) = $db->sql_fetchrow($db->sql_query("SELECT id FROM ".$prefix."_rtc LIMIT $num1,1"));
      if (in_array($id, $cards))  {
         if ($counter > 0) {
            $counter=$counter-1;
         }
      }
      else {
         $cards[$counter]=$id;
      }
      $counter=$counter+1;
   }
   return $cards;
}


Thanks,
Darrell
 
Display posts from previous:       
Post new topic   Reply to topic    Ravens PHP Scripts And Web Hosting Forum Index -> PHP

View next topic
View previous topic
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You can attach files in this forum
You can download files in this forum


Powered by phpBB © 2001-2007 phpBB Group
All times are GMT - 6 Hours
 
Forums ©