Sorry for asking this but, I cant found a solution that will get this -> 7,000 to 7000.
I\'m using intval() and number_format() but it will just give me 7 not 7000.<
intval() won't work with the string you have because of the comma. You can remove the comma by using str_replace() and then calling intval() like so:
intval()
str_replace()
echo intval(str_replace(',', '', $myVal))