Reputation: 4944
I'm trying to re-direct a user if $displayurl
is equal to bit.ly, goo.gl, or owl.ly. It's not working. Is there anything wrong with the IF statement below?
$site1 = 'http://' . $cleanurl;
$displayurl = parse_url($site1, PHP_URL_HOST);
if ($displayurl == array(bit.ly, goo.gl, owl.ly))
{
session_write_close();
header("Location:http://www.domain.com/directory/file.php");
exit;
}
Upvotes: 2
Views: 62
Reputation: 49877
you have to use this code:
$domain = array("bit.ly", "goo.gl", "owl.ly");
if (in_array($displayurl, $domain)) {
session_write_close();
header("Location:http://www.domain.com/directory/file.php");
exit;
}
Upvotes: 5