Here is my php code
var_dump($args['startdate']);
var_dump((int)$args['startdate']);die();
Here is output
string(13) "1468821556126" int(2147483647)
Expected output
string(13) "1468821556126" int(1468821556126)
Why this is happening and how to resolve this issue ?