XpertWorlock Posted May 19, 2009 Share Posted May 19, 2009 Hi, I have a string with a length of 5, I need it to only contain 4,5,6,7,9. [45679]{5} This works perfect in that aspect. Now I need it to only contain each number once. Example: 97654, good 44459, bad 45679, good 66759, bad Thanks a lot Quote Link to comment Share on other sites More sharing options...
Ken2k7 Posted May 19, 2009 Share Posted May 19, 2009 Quick play function blah ($num) { $str = strval($num); $arr = str_split($str); $unique = array_unique($arr); return sizeof($arr) === sizeof($unique); } Quote Link to comment Share on other sites More sharing options...
XpertWorlock Posted May 19, 2009 Author Share Posted May 19, 2009 that works Awesome thanks couldn't find it anywhere else 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.