As shown in String to array of Integers php, there is a solution to convert ALL array elements to integer. But what if my array looks like this:
$v=array(0.00, "0.00", "test", 50);
I need a converted array where all numeric elements (even if quoted, like "0.00") are converted to integer, but strings (like "test") must remain strings...