
mike93H
-
Posts
3 -
Joined
-
Last visited
Community Answers
-
mike93H's post in is_* problem. was marked as the answer
Thank you, you've solved it.
The data comes from various calculations. The integers incorrectly identified as strings are read directly from a DB table. That gave me the clue I needed. Cast the values to the appropriate type has solved the problem.
e.g. $array[fld2] = (int) $database_table_field;