fork(2) download
  1. <?php
  2.  
  3. // URL de exemplo
  4. $url = "http://w...content-available-to-author-only...o.com/categorias/jogos/veja-as-incriveis-novidades-de-2015";
  5.  
  6. // Aplica o Regex na URL
  7. preg_match_all('/[\da-z\.-]+\/(.+)\//', $url, $url_match);
  8.  
  9. // Pega o resultado do Regex
  10. $new_url = str_replace($url_match[1][0], "..", $url);
  11.  
  12. // Cria um elemento <a> com nossas URLs.
  13. $element = "<a href='$url'>$new_url</a>";
  14. echo $element;
Success #stdin #stdout 0.01s 24192KB
stdin
Standard input is empty
stdout
<a href='http://w...content-available-to-author-only...o.com/categorias/jogos/veja-as-incriveis-novidades-de-2015'>http://w...content-available-to-author-only...o.com/../veja-as-incriveis-novidades-de-2015</a>