strip spaces from php string
at 2018-01-07 06:12:00.
There are two ways to remove spaces from a string:
$string = str_replace(' ', '', $string);
$string = preg_replace('/\s+/', '', $string);