Tagged Questions
The isinteger tag has no wiki summary.
1
vote
2answers
54 views
PHP is_int is not performing as expected
I have a page (index.php) that takes a GET variable from the URL and checks it for security purposes. This GET variable should only be an integer. I am using the following code to check this, but in ...
1
vote
8answers
224 views
PHP: Variable is int but can't perform calculation
$bal = (int)$balance;
echo is_int($bal);
$balance is from a file_get_contents($webservice);
I am using (int) to convert a string to integer. is_int returns 1 for true as verification.
Because the ...
1
vote
6answers
210 views
What is the most reliable way of checking if a floating point variable is an integer?
I can think of several ways, eg.
Convert.ToInt32(floatingPoint) - floatingPoint == 0;
Math.Truncate(floatingPoint) - floatingPoint == 0;
floatingPoint % 1 == 0;
Math.Floor(floatingPoint) == ...
1
vote
3answers
2k views
How to check if a number is an integer in .Net?
Say I've got a string which contains a number. I want to check if this number is an integer.
Example
IsInteger("sss") => false
IsInteger("123") => true
IsInterger("123.45") =>false
0
votes
2answers
46 views
how can display any variable contant integer value is_int()?
I have this code:
$showCountSql = "select cad_count from counteraccountdtl WHERE cad_userid =".$_SESSION['UID']." LIMIT 1";
$showCountresult = mysql_query($showCountSql);
$showCountrow = ...
0
votes
2answers
60 views
asp.net mvc 3 using IsInt() in controller
I would like to check if my variable is an integer in controller. In view I can easily use isInt() but not in the controller. Do I need to have a special reference to use that method?
Thank you.
0
votes
3answers
41 views
PHP integer type getting lost on function call
I have some code that pulls database primary keys and iterates through them by calling a function.
When I get the key from the database and do a is_int($key) it returns true.
I then call a function: ...
0
votes
4answers
495 views
Check string for integer
I want to validate a input field. The user should type in a phone number with minimum length of 10 digits.
So I need to check for illegal chars. It would be nice just to check wheather the input is ...