コード例 #1
0
ファイル: URLUtilTest.php プロジェクト: samj1912/repo
 /**
  * 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));
 }