Last active
December 13, 2016 23:32
-
-
Save gmcinnes/9ed690b33b5bded52dbea86eb46794bb to your computer and use it in GitHub Desktop.
wtf php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$x = $this->redirected_hostname(); | |
var_dump($x); | |
var_dump($uri); | |
$y = $uri . $x; | |
var_dump($y); | |
var_dump("wtf"); | |
die(); | |
#string(34) "dev-www-marsdd-com.pantheonsite.io" | |
#string(7) "http://" | |
#string(41) "http://studioy.dev.marsdd.com" | |
#string(3) "wtf" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment