本文整理匯總了PHP中Parser::parseUrl方法的典型用法代碼示例。如果您正苦於以下問題:PHP Parser::parseUrl方法的具體用法?PHP Parser::parseUrl怎麽用?PHP Parser::parseUrl使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Parser
的用法示例。
在下文中一共展示了Parser::parseUrl方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: testDoNotPrependSchemeToSchemelessUrls
/**
* @group issue46
* @group issue49
*
* Don't add a scheme to schemeless URLs
*
* @see https://github.com/jeremykendall/php-domain-parser/issues/46
* @see https://github.com/jeremykendall/php-domain-parser/issues/49
*/
public function testDoNotPrependSchemeToSchemelessUrls()
{
$schemeless = 'www.graphstory.com';
$expected = 'www.graphstory.com';
$url = $this->parser->parseUrl($schemeless);
$actual = $url->__toString();
$this->assertEquals($expected, $actual);
$schemeless = '//www.graphstory.com';
$expected = 'www.graphstory.com';
$url = $this->parser->parseUrl($schemeless);
$actual = $url->__toString();
$this->assertEquals($expected, $actual);
}
示例2: withPath
/**
* Return a new url with the given path
*
* @param Path $path
* @param Parser $parser Helper used to replace the path
*
* @return self
*/
public function withPath(Path $path, Parser $parser) : self
{
$parsed = $parser->parseUrl((string) $this);
return new self((string) new ParsedUrl($parsed->scheme, $parsed->user, $parsed->pass, $parsed->host, $parsed->port, (string) $path, '', ''));
}
示例3: Products
$keys[] = $i;
}
$Products = new Products();
$Parser = new Parser();
// ini_set('memory_limit', '728M');
ini_set('max_execution_time', 3000);
$k = $l = $i = 0;
foreach ($array as $row) {
$res = array_combine($keys, $row);
if (isset($res['url']) && $res['url'] !== '' && !$Products->SetFieldsByRewrite(G::StrToTrans($res['name']))) {
// print_r($res['name']);
// print_r('</br>');
// var_dump(G::StrToTrans($res['name']));
// print_r('</br>');
// var_dump(!$Products->SetFieldsByRewrite(G::StrToTrans($res['name'])));die();
if ($Parser->parseUrl($res['url'])) {
$k++;
sleep(3);
} else {
$l++;
}
} else {
$i++;
}
}
print_r('<pre>товарів додано: ' . $k . '</pre>');
print_r('<pre>товарів не вдалося додати: ' . $l . '</pre>');
print_r('<pre>товарів пропущено: ' . $i . '</pre>');
// ini_set('memory_limit', '192M');
ini_set('max_execution_time', 30);
}