本文整理汇总了PHP中Sabre_DAV_URLUtil::decodePathSegment方法的典型用法代码示例。如果您正苦于以下问题:PHP Sabre_DAV_URLUtil::decodePathSegment方法的具体用法?PHP Sabre_DAV_URLUtil::decodePathSegment怎么用?PHP Sabre_DAV_URLUtil::decodePathSegment使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Sabre_DAV_URLUtil
的用法示例。
在下文中一共展示了Sabre_DAV_URLUtil::decodePathSegment方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testEncodePathSegment
function testEncodePathSegment()
{
$str = '';
for ($i = 0; $i < 128; $i++) {
$str .= chr($i);
}
$newStr = Sabre_DAV_URLUtil::encodePathSegment($str);
// Note: almost exactly the same as the last test, with the
// exception of the encoding of / (ascii code 2f)
$this->assertEquals('%00%01%02%03%04%05%06%07%08%09%0a%0b%0c%0d%0e%0f' . '%10%11%12%13%14%15%16%17%18%19%1a%1b%1c%1d%1e%1f' . '%20%21%22%23%24%25%26%27()%2a%2b%2c-.%2f' . '0123456789%3a%3b%3c%3d%3e%3f' . '%40ABCDEFGHIJKLMNO' . 'PQRSTUVWXYZ%5b%5c%5d%5e_' . '%60abcdefghijklmno' . 'pqrstuvwxyz%7b%7c%7d~%7f', $newStr);
$this->assertEquals($str, Sabre_DAV_URLUtil::decodePathSegment($newStr));
}