本文整理汇总了PHP中Service::kindlePath方法的典型用法代码示例。如果您正苦于以下问题:PHP Service::kindlePath方法的具体用法?PHP Service::kindlePath怎么用?PHP Service::kindlePath使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Service
的用法示例。
在下文中一共展示了Service::kindlePath方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testRelativeUrl
public function testRelativeUrl()
{
$base = 'http://shimizuyu.jp/index.html#facilities';
$target = 'images/btn_s01_f2.jpg';
$url = Url::parseRelative($base, $target);
$this->assertEquals('http://shimizuyu.jp/images/btn_s01_f2.jpg', $url->url);
$this->assertEquals('images/shimizuyu.jp/' . $target, Service::kindlePath($url));
$target = './images/btn_s01_f2.jpg';
$url = Url::parseRelative($base, $target);
$this->assertEquals('http://shimizuyu.jp/images/btn_s01_f2.jpg', $url->url);
$this->assertEquals('images/shimizuyu.jp/images/btn_s01_f2.jpg', Service::kindlePath($url));
}
示例2: exec
public function exec()
{
$imgs = $this->domElement->getElementsByTagName('img');
foreach ($imgs as $img) {
$src = $img->getAttribute('src');
$imgUrl = Url::parseRelative($this->url->url, $src);
try {
$imgFile = file_get_contents($imgUrl->url);
$this->dirBuilder->putImage(Service::kindlePath($imgUrl), $imgFile);
} catch (Exception $e) {
// 無視
d($e);
}
}
}
示例3: normalize
private function normalize()
{
// a hrefを絶対パスに変更
$u = Url::parse($this->url);
foreach ($this->contentNode->getElementsByTagName('a') as $element) {
$href = $element->getAttribute('href');
if (strpos($href, 'http') === 0 || strpos($href, '#') === 0) {
continue;
}
if (strpos($href, '/') === 0) {
$element->setAttribute('href', $u->scheme . $u->host . $href);
} else {
if (strpos($href, './') === 0) {
$element->setAttribute('href', $u->scheme . $u->host . $u->path . substr($href, 2));
}
}
}
// img srcをdomain/相対パスに変更 hoge.domain.com/s/r/c.png
foreach ($this->contentNode->getElementsByTagName('img') as $element) {
$src = $element->getAttribute('src');
$srcUrl = Url::parseRelative($this->url, $src);
$element->setAttribute('src', Service::kindlePath($srcUrl));
}
}