Welcome to Tech Support Forum home to more then 136,000 problems solved. Issues have included: Spyware, Malware, Virus Issues, Windows, Microsoft, Linux, Networking, Security, Hardware, and Gaming Getting your problem solved is as easy as:
1. Registering for a free account
2. Asking your question
3. Receiving an answer

Registered members:
* Get free support
* Communicate privately with other members (PM).
* Removal of this message
* See fewer ads.
* And much more..

 



Want to know how to post a question? click here Having problems with spyware and pop-ups? First Steps
Go Back   Tech Support Forum > Design Forum > Web Design & Programming
User Name
Password
Site Map Register Donate Rules Blogs Mark Forums Read


Web Design & Programming Discussion of web design, and server-side & client-side scripting

Reply
 
LinkBack Thread Tools
Old 11-07-2009, 05:50 AM   #1 (permalink)
Registered User
 
Join Date: Oct 2009
Location: Plymouth, UK
Posts: 7
OS: windows vista business SP1


[SOLVED] PHP: how to replace values of an array with values from 2nd array

hi

I'm a bit unexperienced in this, so I need some help

I have two arrays:
$users
Array ( [1] => esso82 [4] => semkovic [8] => krtko2121 )

and
$msg
Array ( [0] => 1 [1] => 4 [2] => 8 [3] => 1 )

what do I need to do, is go through the second array and replace its values by values from first array where value of second array is a key of first array
do you understand me?

say we don't need to replace those values, we can make another array, but it should end up like this: ie
$output
Array ( [0] => esso82 [1] => semkovic [2] => krtko2121 [3] => esso82 )


thanks for any help, as my logic is nort working at the moment :D
esso82 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Important Information
Join the #1 Tech Support Forum Today - It's Totally Free!

TechSupportForum.com is a leading support website for your computer needs. We offer free, friendly and personalized computer support. Why pay to have your computer fixed when you can do it for free.

Join TechSupportforum.com Today - Click Here

Old 11-07-2009, 08:02 PM   #2 (permalink)
Registered User
 
Join Date: Nov 2009
Posts: 2
OS: Windows 7


Re: PHP: how to replace values of an array with values from 2nd array

Hello, if you still need help, try this

PHP Code:
<?php
$users 
= array( => 'esso82'=> 'semkovic'=> 'krtko2121' );
$msg = array( => 1=> 4=> 8=> );


$output = array();

foreach ( 
$msg as $msg_id => $user_id )
{
     if ( ! isset(
$users[$user_id]) ) { continue; } //skip, if user_id doesn't exists

     
$output[$msg_id] = $users[$user_id];
}

print_r($output);
//$output is: Array ( [0] => esso82 [1] => semkovic [2] => krtko2121 [3] => esso82 ) 

?>
I suppose that the array $users contains "key => value" pair in shape "user_id => user_name" and array $msg "msg_id => user_id".

That thing above will create a new array $output, with keys from $msg and values from $users using "user_id" from $msg.

It has one check. If in $msg will be some "user_id" that is not in $users, it will try to add a value that doesn't exists and thus creating a Notice, and that's bad. So it will rather skip that bad iteration.

I hope that helped, and sorry for my bad English, maybe I could use google translate with better effect next time
Nicitel is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 11-09-2009, 11:38 AM   #3 (permalink)
Registered User
 
Join Date: Oct 2009
Location: Plymouth, UK
Posts: 7
OS: windows vista business SP1


Re: PHP: how to replace values of an array with values from 2nd array

hi buddy, thanks for your post, but I fergot to update, I already sorted this out the same way ... my logics started to work again :D ... but thanks once again :D
esso82 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 11-10-2009, 04:55 PM   #4 (permalink)
God (TSF Enthusiast)
 
ahmorrow's Avatar
 
Join Date: May 2009
Location: Jeffersonville, IN
Posts: 888
OS: Ubuntu 9.10 [Karmic Koala]

My System

Send a message via AIM to ahmorrow Send a message via Yahoo to ahmorrow
Re: PHP: how to replace values of an array with values from 2nd array

Please mark this post as solved.

Go up to the original post and under "Thread Tools" you'll find "Mark as Solved" or something similar.
ahmorrow is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Reply


Thread Tools

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 Off
Pingbacks are Off
Refbacks are Off




All times are GMT -7. The time now is 06:50 PM.



Copyright 2001 - 2009, Tech Support Forum
Home Tips Plus | Outdoor Basecamp | Automotive Support Forum

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 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85