Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

remove % in url in php

<?php
    // Decode the Encoded URL
    $input = "http%3A%2F%2Fway2tutorial.com%2F";
    $input = urldecode($input);

    // Output http://way2tutorial.com/
    echo $input;
?>
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #remove #url #php
ADD COMMENT
Topic
Name
6+5 =