本文整理汇总了PHP中UrlUtil::getPathPart方法的典型用法代码示例。如果您正苦于以下问题:PHP UrlUtil::getPathPart方法的具体用法?PHP UrlUtil::getPathPart怎么用?PHP UrlUtil::getPathPart使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类UrlUtil
的用法示例。
在下文中一共展示了UrlUtil::getPathPart方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getFormConfig
/**
* Returns a valid af_formcfg for this form or null.
*/
private static function getFormConfig($context)
{
$request = $context->getRequest();
$encoded = $request->getParameter('af_formcfg');
$formcfg = afAuthenticDatamaker::decode($encoded);
if ($formcfg === null) {
return null;
}
$uri = $context->getRequest()->getUri();
if (UrlUtil::getPathPart($formcfg['url']) !== UrlUtil::getPathPart($uri)) {
// The given formcfg is for a different form.
return null;
}
return $formcfg;
}
示例2: dirname
<?php
include dirname(__FILE__) . '/../bootstrap/dbunit.php';
$t = new lime_test(9, new lime_output_color());
$t->is(UrlUtil::addParam('http://hello', 'token', '1234'), 'http://hello?token=1234');
$t->is(UrlUtil::addParam('http://hello?good=1', 'token', '1234'), 'http://hello?good=1&token=1234');
$t->is(UrlUtil::addParam('http://hello?good=1&time=now', 'token', '1234'), 'http://hello?good=1&time=now&token=1234');
$t->is(UrlUtil::addParam('/', 'values', array(1, 2, 3)), '/?values%5B0%5D=1&values%5B1%5D=2&values%5B2%5D=3');
$t->is(UrlUtil::addParam('/', 'map', array('me' => 1, 'you' => 2)), '/?map%5Bme%5D=1&map%5Byou%5D=2');
$t->is(UrlUtil::addParams('http://hello', array('token' => '1234', 'escape' => 'with&and=value')), 'http://hello?token=1234&escape=with%26and%3Dvalue');
$t->is(UrlUtil::getPathPart('http://example.com/server/listServer?id=1'), '/server/listServer');
$t->is(UrlUtil::getPathPart('http://example.com'), '');
$t->is(UrlUtil::getPathPart('https://example.com/hello#world'), '/hello');