I have the following number: "4.000.00" I need to delete the point and the two 0 the right in (php 5) thank you!
I tried with:
preg_replace('/^(\d+)\.0+$/', '$1', $this->input->post('valor'));
trim($this->input->post('valor'),0); //solo quita el 00 pero no el "."