- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
FILTER_SANITIZE_URL constant in PHP
The FILTER_SANITIZE_URL constant removes all illegal URL characters from a string. It allows the following −
$-_.+!*'(),{}|\^~[]`"><#%;/?:@&=
Return
The FILTER_SANITIZE_URL constant does not return anything.
Example
<?php $var = "www.example"; var_dump(filter_var($var, FILTER_SANITIZE_URL)); ?>
Output
The following is the output.
string(11) "www.example"
Advertisements