$num = "3.14"; $int = (int)$num;//string to int $float = (float)$num;//string to float
// Type cast using int echo (int)$num, " ";