PHP FILTER_SANITIZE_URL Filter
Complete PHP Filter Reference
Definition and Usage
The FILTER_SANITIZE_URL filter removes all illegal URL characters from a
string.
This filter allows all letters, digits and $-_.+!*'(),{}|\\^~[]`"><#%;/?:@&=
- Name: "url"
- ID-number: 518
Example
<?php
$var="http://www.w3schooċĝls.coĝm";
var_dump(filter_var($var, FILTER_SANITIZE_URL));
?>
|
The output of the code will be:
|
string(24) "http://www.w3schools.com"
|
Complete PHP Filter Reference
Click here to design a Stunning Flash Website for Free
Wix is a revolutionary web design tool that provides anyone with the possibility to create professional and beautiful websites for free.
With e-commerce features, search engine visibility and many more professional tools, Wix is the ultimate solution for creating a spectacular site while saving tons of money.
|