asmith Posted December 4, 2007 Share Posted December 4, 2007 can i delete array repeated values ? $a = array ( "a","a","b","b") ==> $b = array( "a","b") ? Quote Link to comment Share on other sites More sharing options...
rajivgonsalves Posted December 4, 2007 Share Posted December 4, 2007 Yes $b = array_unique($a); Quote Link to comment Share on other sites More sharing options...
asmith Posted December 4, 2007 Author Share Posted December 4, 2007 got it ! you've helped me here so many times ! don't know how to thank you ! Quote Link to comment Share on other sites More sharing options...
rajivgonsalves Posted December 4, 2007 Share Posted December 4, 2007 Glad to be of help Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.