This is a PHP function to filter variables based on various filter flags. Returns FALSE on failure otherwise filtered data is returned.

learn more… | top users | synonyms

0
votes
1answer
40 views

PHP filter_var() function allowing more than one minus in integer numbers

I am trying to filter integers using filter_var(), but in this case: echo filter_var('-3-6-5', FILTER_SANITIZE_NUMBER_INT); // Output: -3-6-5 Instead of -3-6-5 i expect to get -365. Someone know ...
0
votes
3answers
53 views

Editing form to sanitize/validate phone number

I have very limited experience with PHP and I'm really hoping someone can help me. What I want to do is sanitize/validate the phone number input so that only numbers are allowed. I think I need to ...
-2
votes
1answer
58 views

How to count characters only even after filter_var on string in PHP [closed]

I have textarea inputs with limits on character entry but after the field is processed by PHP filter_var other characters are added. There are also line breaks and carriage returns. How do I simply ...
1
vote
2answers
100 views

More tidy way of sanitizing input?

I'm conducting quite an extensive list of pre-database-insert filters and I'm getting quite bummed out about how long and ugly the code is: ...
0
votes
1answer
114 views

php filter_var FILTER_FLAG_ENCODE_HIGH

I have the fallowing testcase for the php function function_var(): <?php $inputvalue = "Ž"; //NUM = 142 on the ASCII extended list $sanitized = filter_var($inputvalue, FILTER_SANITIZE_STRING, ...
3
votes
2answers
110 views

PHP filter_var bug?

The following code successfully validates the string "0123.250" as a valid float, when it is not. Is this a PHP bug or did I do something wrong? filter_var('0123.250', FILTER_VALIDATE_FLOAT);
0
votes
1answer
91 views

PHP filter_var: How to make sure the user provides correct data types - true or false only

I want to compare two arrays, one is set by default and another by user input. When I have set a boolean value only in the default so I want to make sure the user won't use string or number. for ...
1
vote
1answer
763 views

FILTER_VALIDATE_EMAIL not working

I certainly must be missing something here. For some reason filter_var is not working. I'm trying to validate an email from $_POST, and it returns false even with valid emails. But, when I hardcode an ...
0
votes
1answer
2k views

filter_var using FILTER_VALIDATE_REGEXP

I'm practicing my beginner php skills and would like to know why this script always returns FALSE? What am i doing wrong? $namefields = '/[a-zA-Z\s]/'; $value = 'john'; if ...
0
votes
1answer
274 views

php 5.2 - FILTER_SANITIZE_FULL_SPECIAL_CHARS

I am trying to modify my coding styles and am getting used to using filter_var($input,FILTER_SANITIZE_FULL_SPECIAL_CHARS). I have gotten used to using the other filter_var options with no difficulty. ...
1
vote
0answers
228 views

good practice in mail and FILTER_SANITIZE_STRING

I use this to send email: $_POST['message'] = filter_var($_POST['message'], FILTER_SANITIZE_STRING); // … mail($mail_to, $subject, $message, 'MIME-Version: 1.0' ."\r\n" .'Content-type: ...
1
vote
4answers
114 views

Filter var for calling a shellscript with system on php

i need to filter those var to call system in php and execute a shell script. What filter_var SANITIZE macro i need to use to remove ";" or problems during shell execution? Like unwanted ...
0
votes
1answer
716 views

PHP validate IP address

<?php $subdomain ='hello.cheapantivirus.me'; $ns1 = 'ns01.000webhost.com'; $host = "@$ns1 $subdomain"; $ip = `/usr/bin/dig $host +short A`; echo $ip; // output is 31.170.161.67 $ip3 = ...
3
votes
1answer
135 views

PHP validation booleans using filter_var

I'm using filter_var to validate boolean values but I did not expect it to not recognize FALSE. Why does this happen? filter_var(FALSE, FILTER_VALIDATE_BOOLEAN, FILTER_NULL_ON_FAILURE) returns null ...
3
votes
4answers
2k views

PHP - Filter_var alternative?

I built a php script to output data posted in a form, but I ran into a problem. The server the website is going to run on, runs PHP 5.1.6. This version of PHP does not support filter_var. I need to ...
0
votes
1answer
178 views

The input value of false for FILTER_VALIDATE_BOOLEAN

I want the input to accpet 'true' or 'false' only, so I am trying to use FILTER_VALIDATE_BOOLEAN to do that, if (!filter_var('false', FILTER_VALIDATE_BOOLEAN)) { $error = true; echo 'error'; ...
8
votes
2answers
652 views

php filter_var email error

i use he filter_var php function to validate email address when a user sign up to my site so i use this code form the post: $email = filter_var($_POST['email'], FILTER_VALIDATE_EMAIL); then later ...
5
votes
3answers
824 views

PHP when to use filter_var instead of built in php functions

I noticed there are many things you can do with the PHP filter_var function which can also be done with other function. For example, the filters FILTER_VALIDATE_REGEXP, FILTER_SANITIZE_ENCODED and ...
0
votes
2answers
386 views

Sanitizing input for SQL queries in Adodb for PHP

I'm optimizing a platform that uses ADODBforPHP. I used a sanitization function that avoids sql injections for previous versions of PHP (mysql_escape_string) which are obviously not longer supported ...
5
votes
1answer
130 views

.htaccess and filtering $_GET

Hello I am writing a profile page script, in this script I check the value of an incoming $_GET variable and validate that it is an integer, I then validate this value against a $_SESSION value to ...
0
votes
0answers
48 views

PHP Filter Vars [duplicate]

Possible Duplicate: filter_var vs htmlentities vs htmlspecialchars I just wanted to know if there are any benifits or drawbacks in using filter_var() for sanitization over using like ...
1
vote
3answers
242 views

php filter var returning a wrong result

I wanted to use the php filer_var function but it's returning a wrong result, it seems that it doesn't take into account the range: $v = 54; $int_opts = array ( 'min_range' => 0, ...
4
votes
1answer
1k views

filter_var vs htmlentities vs htmlspecialchars

Disclaimer This is not a question about whether we should be escaping for database input. This is strictly looking at the technical differences between the three functions in the title. ...
4
votes
1answer
231 views

Zend_Validate_EmailAddress versus filter_var(…, FILTER_VALIDATE_EMAIL)

Of Zend_Validate_EmailAddress and filter_var(..., FILTER_VALIDATE_EMAIL), which is better when validating an email address and why?
1
vote
2answers
180 views

Why does filter_var() do not accept 0 as boolean?

i had to validate a variable which should have boolean value either 1 or 0. i tried using filter_var(), the problem with the function is if it gets 0 as input it will return false, isn't 0 considered ...
1
vote
3answers
987 views

How are PHP's built-in functions implemented internally?

are these functions written the same way as user functions? I mean with PHP code and with regular expressions and stuff like that? For example: filter_var($email, FILTER_VALIDATE_EMAIL); vs. ...
1
vote
2answers
240 views

Which Method For Verification ? REGEX or filter_var?

What do you think, is there any difference (for performance, security, reliability ) between this methods : METHOD 1 eregi("^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})$", ...
3
votes
4answers
511 views

Does FILTER_VALIDATE_EMAIL make a string safe for insertion in database?

$str = '"mynam@blabl"@domanin.com'; filter_var($str, FILTER_VALIDATE_EMAIL);//return valid email. the above email returns true... Fair enough that RFC 2822 says it's a legal email address. my ...
1
vote
2answers
494 views

PHP - BUG with filter_var and FILTER_VALIDATE_FLOAT

I think there is a bug in this filter_var or maybe I'm doing something wrong: Try this: $options = array( 'options' => array( 'default' => 3, ...
2
votes
4answers
117 views

Intern working for Indian NGO - Help with PHP 4, advising staff

For the past three months I've been working for an Indian NGO, doing some volunteer work in the field but also trying to improve their website, which needs a ton of work. Recently I've been trying to ...
1
vote
4answers
1k views

Why FILTER_VALIDATE_URL return FALSE for only this url?

i have the following code: <?php $pictureurl="http://icons3.iconfinder.netdna-cdn.com/data/icons/pool/poolbird.png"; if(filter_var($pictureurl, FILTER_VALIDATE_URL) === FALSE){ echo "Invalid Url"; ...
1
vote
1answer
432 views

PHP FILTER_SANITIZE_URL swedish domain name

I am experimenting with filter_input and filter_var and I am currently trying to sanitize URLs with FILTER_SANITIZE_URL. The test program gets input from a GET variable which consists of a URL, (ex. ...
2
votes
2answers
4k views

PHP filter_var() - FILTER_VALIDATE_URL

The FILTER_VALIDATE_URL filter seems to have some trouble validating non-ASCII URLs: var_dump(filter_var('http://pt.wikipedia.org/wiki/', FILTER_VALIDATE_URL)); // http://pt.wikipedia.org/wiki/ ...