fork download
  1. <?php
  2.  
  3. // it's for show result in ideone
  4. $stdout = fopen('php://stdout', 'w');
  5.  
  6. function url_relative_to_absolute($baseUrl, $relativeUrl, $removeGet=true) {
  7. $url = rtrim($baseUrl, '/').'/'.ltrim($relativeUrl, '/');
  8. if($removeGet)
  9. $url = strtok($url, '?');
  10. return $url;
  11. }
  12.  
  13. $res = url_relative_to_absolute(
  14. 'http://e...content-available-to-author-only...e.com',
  15. '/upload/produse/Blu-ray/BD-H6500.jpg?maxwidth=800&maxheight=800'
  16. );
  17.  
  18. // it's for show result in ideone
  19. fwrite($stdout, $res);
Success #stdin #stdout 0.02s 24448KB
stdin
Standard input is empty
stdout
http://e...content-available-to-author-only...e.com/upload/produse/Blu-ray/BD-H6500.jpg