Lines Matching refs:str
9 $str = '';
10 for ($i = 0;$i < 128;$i++) $str .= chr($i);
12 $newStr = URLUtil::encodePath($str);
25 $this->assertEquals($str, URLUtil::decodePath($newStr));
31 $str = '';
32 for ($i = 0;$i < 128;$i++) $str .= chr($i);
34 $newStr = URLUtil::encodePathSegment($str);
49 $this->assertEquals($str, URLUtil::decodePathSegment($newStr));
55 $str = 'Hello%20Test+Test2.txt';
56 $newStr = URLUtil::decodePath($str);
66 $str = 'Hello%C3%BC.txt';
67 $newStr = URLUtil::decodePath($str);
77 $str = 'Hello%FC.txt';
78 $newStr = URLUtil::decodePath($str);
90 $str = '/webdav/%C3%A0fo%C3%B3';
91 $newStr = URLUtil::decodePath($str);
92 $this->assertEquals(strtolower($str), URLUtil::encodePath($newStr));