php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Request #61878 FILTER_VALIDATE_URL doesn't support tel: schema
Submitted: 2012-04-30 05:25 UTC Modified: 2012-04-30 16:30 UTC
Votes:1
Avg. Score:1.0 ± 0.0
Reproduced:0 of 0 (0.0%)
From: colin at viebrock dot ca Assigned:
Status: Open Package: Filter related
PHP Version: 5.3.11 OS: Debian
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: colin at viebrock dot ca
New email:
PHP Version: OS:

 

 [2012-04-30 05:25 UTC] colin at viebrock dot ca
Description:
------------
filter_var($uri, FILTER_VALIDATE_URL) will return false if $uri is a "tel:" 
scheme.

I'm not sure if this is covered by RFC 2396, so if it isn't then this should 
become a feature request instead of a bug.

Test script:
---------------
$uri = 'tel:4166520322';

echo filter_var($uri, FILTER_VALIDATE_URL) ? "ok" : "no";


Expected result:
----------------
ok

Actual result:
--------------
no

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2012-04-30 16:30 UTC] felipe@php.net
-Type: Bug +Type: Feature/Change Request
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Wed Dec 04 18:01:31 2024 UTC