Irish SEO,  Marketing & Webmaster Discussion

 

[PHP] How to create a random array?

This is a discussion on [PHP] How to create a random array? within the Coding Help forums, part of the Webmaster Discussion category; Hi, How would I go about randomizing an array in PHP? Basically I have an array of a few elements ...


Go Back   Irish SEO, Marketing & Webmaster Discussion > Webmaster Help > Webmaster Discussion > Coding Help

Register Forum Rules FAQDonate Calendar Search Today's Posts Mark Forums Read



Reply

 

LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 29-12-2007, 04:09 AM
babyboy808's Avatar
Wannabe Geek
 
Join Date: Jan 2007
Location: everywhere
Posts: 413
Nominated 0 Times in 0 Posts
TOTW/F/M Award(s): 0
Thanks: 0
Thanked 1 Time in 1 Post
babyboy808 will become famous soon enough
Default [PHP] How to create a random array?

Hi,

How would I go about randomizing an array in PHP?

Basically I have an array of a few elements and on each call I want to output a different element if that makes sense

Here's where I'm at:

Code:
                   for($i=0; $i<=$text; $i++)
                   {
                        
                        // The word we want to replace
                        $bestwords = array('best');
                        
                        // The new word we want in place of the old one
                        $newbestwords = array('ace', 'coolest', 'finest', 'incomparable');
                        
                        // Randomize array
                        $random = array_rand($newbestwords, 2);
                        
                        // Run through the text and replaces all occurrences of $oldText
                        $text = str_replace($bestwords , $newbestwords , $text);
                        
                        // Display the new text
                        echo $text;
                   }
Most of the code is ripped from different sources.

thanks in advance,
Keith
__________________
Web Design Ireland
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #2 (permalink)  
Old 29-12-2007, 01:28 PM
louie's Avatar
Senior Member
 
Join Date: Jan 2006
Location: Dublin, Ireland
Posts: 2,328
Nominated 7 Times in 5 Posts
Nominated TOTW/F/M Award(s): 2
Thanks: 0
Thanked 1 Time in 1 Post
louie will become famous soon enoughlouie will become famous soon enoughlouie will become famous soon enoughlouie will become famous soon enoughlouie will become famous soon enoughlouie will become famous soon enoughlouie will become famous soon enoughlouie will become famous soon enoughlouie will become famous soon enoughlouie will become famous soon enoughlouie will become famous soon enough
Send a message via Yahoo to louie Send a message via Skype™ to louie
Default

That code should work but I need to see where are you using it.

Best put the code in a function and call it when need it.
__________________
:. Web Design & Development Web Design Ireland
:. Search Engines Optimization Search Engines Optimization
:. Car Parts & Accessories Car Parts
:. Cars Ireland Cars Ireland
:. I Have 2 Find It Directory SEF Directory
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #3 (permalink)  
Old 29-12-2007, 01:33 PM
babyboy808's Avatar
Wannabe Geek
 
Join Date: Jan 2007
Location: everywhere
Posts: 413
Nominated 0 Times in 0 Posts
TOTW/F/M Award(s): 0
Thanks: 0
Thanked 1 Time in 1 Post
babyboy808 will become famous soon enough
Default

Hi Louie,

That's where I'm at so far with everything.

It always displays
Quote:
I am the ace
when run and never any other of the words?

I haven't a clue what's happening.

Also what is this bit here:
Code:
$random = array_rand($newbestwords, 2);
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #4 (permalink)  
Old 29-12-2007, 01:36 PM
louie's Avatar
Senior Member
 
Join Date: Jan 2006
Location: Dublin, Ireland
Posts: 2,328
Nominated 7 Times in 5 Posts
Nominated TOTW/F/M Award(s): 2
Thanks: 0
Thanked 1 Time in 1 Post
louie will become famous soon enoughlouie will become famous soon enoughlouie will become famous soon enoughlouie will become famous soon enoughlouie will become famous soon enoughlouie will become famous soon enoughlouie will become famous soon enoughlouie will become famous soon enoughlouie will become famous soon enoughlouie will become famous soon enoughlouie will become famous soon enough
Send a message via Yahoo to louie Send a message via Skype™ to louie
Default

try this:
PHP Code:
for($i=0$i<=$text$i++)
                   {
                        
                        
// The word we want to replace
                        
$bestwords = array('best');
                        
                        
// The new word we want in place of the old one
                        
$newbestwords = array('ace''coolest''finest''incomparable');
                        
                        
// Randomize array
                        
$random array_rand($newbestwords2);
                        
                        
// Run through the text and replaces all occurrences of $oldText
                        
$text str_replace($bestwords $random$text);
                        
                        
// Display the new text
                        
echo $text;
                   } 
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #5 (permalink)  
Old 29-12-2007, 05:55 PM
Forbairt's Avatar
respect my AW-THOR-IT-AYY
 
Join Date: Jun 2007
Location: My Office, Dublin
Posts: 2,285
Nominated 2 Times in 1 Post
Nominated TOTW/F/M Award(s): 1
Thanks: 2
Thanked 5 Times in 5 Posts
Forbairt will become famous soon enoughForbairt will become famous soon enoughForbairt will become famous soon enoughForbairt will become famous soon enoughForbairt will become famous soon enoughForbairt will become famous soon enoughForbairt will become famous soon enoughForbairt will become famous soon enoughForbairt will become famous soon enoughForbairt will become famous soon enoughForbairt will become famous soon enough
Send a message via AIM to Forbairt Send a message via MSN to Forbairt Send a message via Yahoo to Forbairt Send a message via Skype™ to Forbairt
Default

ok this seems a bit weird ...

you are initializing your arrays each time in your loop ? they should be outside of it ...

you are also picking 2 entries from the array placing it into another array ???
Quote:
$random = array_rand($newbestwords, 2);


What is your original text string ?

"I am the best? " ???


You are iterating / trying to iterate through a piece of text ??

thats not making sense to me ?

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #6 (permalink)  
Old 29-12-2007, 11:33 PM
babyboy808's Avatar
Wannabe Geek
 
Join Date: Jan 2007
Location: everywhere
Posts: 413
Nominated 0 Times in 0 Posts
TOTW/F/M Award(s): 0
Thanks: 0
Thanked 1 Time in 1 Post
babyboy808 will become famous soon enough
Default

Hi Forbairt, thanks for the reply.

You have obviously picked up on my crap php "skills" - I don't know how to code it exactly, but I know what I want it to do, I guess I haven't described it well enough.. oh well
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #7 (permalink)  
Old 29-12-2007, 11:47 PM
Forbairt's Avatar
respect my AW-THOR-IT-AYY
 
Join Date: Jun 2007
Location: My Office, Dublin
Posts: 2,285
Nominated 2 Times in 1 Post
Nominated TOTW/F/M Award(s): 1
Thanks: 2
Thanked 5 Times in 5 Posts
Forbairt will become famous soon enoughForbairt will become famous soon enoughForbairt will become famous soon enoughForbairt will become famous soon enoughForbairt will become famous soon enoughForbairt will become famous soon enoughForbairt will become famous soon enoughForbairt will become famous soon enoughForbairt will become famous soon enoughForbairt will become famous soon enoughForbairt will become famous soon enough
Send a message via AIM to Forbairt Send a message via MSN to Forbairt Send a message via Yahoo to Forbairt Send a message via Skype™ to Forbairt
Default

well describe what you want to happen .. and who knows someone might help more .. unless louie's version already does the job
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #8 (permalink)  
Old 30-12-2007, 12:18 AM
louie's Avatar
Senior Member
 
Join Date: Jan 2006
Location: Dublin, Ireland
Posts: 2,328
Nominated 7 Times in 5 Posts
Nominated TOTW/F/M Award(s): 2
Thanks: 0
Thanked 1 Time in 1 Post
louie will become famous soon enoughlouie will become famous soon enoughlouie will become famous soon enoughlouie will become famous soon enoughlouie will become famous soon enoughlouie will become famous soon enoughlouie will become famous soon enoughlouie will become famous soon enoughlouie will become famous soon enoughlouie will become famous soon enoughlouie will become famous soon enough
Send a message via Yahoo to louie Send a message via Skype™ to louie
Default

it should but as I already said it will work better in a function and without the "loop" or
PHP Code:
$bestwords = array('best');
$newbestwords = array('ace''coolest''finest''incomparable');                        
echo 
str_replace($bestwords array_rand($newbestwords,1), $text); 
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Reply

Tags
array, create, php, random

Thread Tools
Display Modes

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
Trackbacks are On
Pingbacks are On
Refbacks are On



Sponsored links

Pepperjam Network
Paid On Results www.zanox.com Get Chitika Premium


All times are GMT +1. The time now is 09:50 AM.


Powered by: vBulletin Version 3.8.4, Copyright ©2000 - 2010, Jelsoft Enterprises Limited.
Hosted in Ireland by Blacknight - Test your ISP |Irish Hosting Directory| Armchair.ie|Logo by Eden Web Design|Avatars by Afterglow |Latest Blog Entries | VPS HostingAd Management by RedTyger

Search Engine Friendly URLs by vBSEO 3.3.2

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64