Skip to content

Instantly share code, notes, and snippets.

@coenjacobs
Created February 10, 2020 20:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save coenjacobs/805ca04c412d1e5643e083d9888b9e32 to your computer and use it in GitHub Desktop.
Save coenjacobs/805ca04c412d1e5643e083d9888b9e32 to your computer and use it in GitHub Desktop.
<?php
$result = wp_remote_get('yourredirectingdomain.com');
$history = $result['http_response']->get_response_object()->history;
foreach( $history as $part ) {
echo $part->headers->getValues('location');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment