You are here

function _background_process_unparse_url in Background Process 8

Same name and namespace in other branches
  1. 6 background_process.module \_background_process_unparse_url()
  2. 7.2 background_process.http.inc \_background_process_unparse_url()
  3. 7 background_process.module \_background_process_unparse_url()

Reverse logic of parse_url().

1 call to _background_process_unparse_url()
_background_process_secure_url in ./background_process.module
Secure a URL by obfuscating the password if present.

File

./background_process.module, line 1371
This module implements a framework for calling funtions in the background.

Code

function _background_process_unparse_url($parsed_url) {
  $scheme = isset($parsed_url['scheme']) ? $parsed_url['scheme'] . '://' : '';
  $host = isset($parsed_url['host']) ? $parsed_url['host'] : '';
  $port = isset($parsed_url['port']) ? ':' . $parsed_url['port'] : '';
  $user = isset($parsed_url['user']) ? $parsed_url['user'] : '';
  $pass = isset($parsed_url['pass']) ? ':' . $parsed_url['pass'] : '';
  $pass = $user || $pass ? "{$pass}@" : '';
  $path = isset($parsed_url['path']) ? $parsed_url['path'] : '';
  $query = isset($parsed_url['query']) ? '?' . $parsed_url['query'] : '';
  $fragment = isset($parsed_url['fragment']) ? '#' . $parsed_url['fragment'] : '';
  return "{$scheme}{$user}{$pass}{$host}{$port}{$path}{$query}{$fragment}";
}