Пример #1
0
 /**
  * This testcase was sent by a bug reporter
  *
  * @depends testDecode
  */
 function testDecodeAccentsWindows7()
 {
     $str = '/webdav/%C3%A0fo%C3%B3';
     $newStr = URLUtil::decodePath($str);
     $this->assertEquals(strtolower($str), URLUtil::encodePath($newStr));
 }