Suppose after applying implode to an array , I got a String for example :-
$var = 1631075,1631076;
On applying var_dump to $var , I received the output as string(15) "1631075,1631076"
how will I convert entire $var into Integer variable . Such that the var_dump display int(15)1631075,1631076