Diff for /embedaddon/php/ext/standard/tests/url/parse_url_basic_001.phpt between versions 1.1 and 1.1.1.2

version 1.1, 2012/02/21 23:48:04 version 1.1.1.2, 2014/06/15 20:04:00
Line 743  echo "Done"; Line 743  echo "Done";
   string(1) ":"    string(1) ":"
 }  }
   
   --> http://::#: array(2) {
     ["scheme"]=>
     string(4) "http"
     ["host"]=>
     string(1) ":"
   }
   
 --> x://::6.5: array(3) {  --> x://::6.5: array(3) {
   ["scheme"]=>    ["scheme"]=>
   string(1) "x"    string(1) "x"
Line 838  echo "Done"; Line 845  echo "Done";
   string(1) "/"    string(1) "/"
 }  }
   
   --> /rest/Users?filter={"id":"123"}: array(2) {
     ["path"]=>
     string(11) "/rest/Users"
     ["query"]=>
     string(19) "filter={"id":"123"}"
   }
   
 --> http:///blah.com: bool(false)  --> http:///blah.com: bool(false)
   
 --> http://:80: bool(false)  --> http://:80: bool(false)
Line 855  echo "Done"; Line 869  echo "Done";
 --> http://:/: bool(false)  --> http://:/: bool(false)
   
 --> http://?: bool(false)  --> http://?: bool(false)
   
   --> http://#: bool(false)
   
 --> http://?:: bool(false)  --> http://?:: bool(false)
   
Line 863  echo "Done"; Line 879  echo "Done";
 --> http://blah.com:123456: bool(false)  --> http://blah.com:123456: bool(false)
   
 --> http://blah.com:abcdef: bool(false)  --> http://blah.com:abcdef: bool(false)
 Done  
   
   Done

Removed from v.1.1  
changed lines
  Added in v.1.1.1.2


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>