php为什么相对路径转成绝对路径

发布网友 发布时间:2022-04-06 06:55

我来回答

5个回答

懂视网 时间:2022-04-06 11:16

我们可以通过preg_replace()函数来实现相对路径转绝对路径。

(推荐学习:php教程)

函数介绍

preg_replace() 函数执行一个正则表达式的搜索和替换。

函数语法

mixed preg_replace ( mixed $pattern , mixed $replacement , mixed $subject [, int $limit = -1 [, int &$count ]] )

搜索 subject 中匹配 pattern 的部分, 以 replacement 进行替换。

参数说明:

  • $pattern: 要搜索的模式,可以是字符串或一个字符串数组。

  • $replacement: 用于替换的字符串或字符串数组。

  • $subject: 要搜索替换的目标字符串或字符串数组。

  • $limit: 可选,对于每个模式用于每个 subject 字符串的最大可替换次数。 默认是-1(无)。

  • $count: 可选,为替换执行的次数。

  • 返回值

    如果 subject 是一个数组, preg_replace() 返回一个数组, 其他情况下返回一个字符串。

    如果匹配被查找到,替换后的 subject 被返回,其他情况下 返回没有改变的 subject。如果发生错误,返回 NULL。

    代码实现:

    //相对路径转化成绝对路径
    <?
    function relative_to_absolute($content, $feed_url) { 
    preg_match('/(http|https|ftp):///', $feed_url, $protocol); 
    $server_url = preg_replace("/(http|https|ftp|news):///", "", $feed_url);
    //开源OSPhP.COM.CN
    $server_url = preg_replace("//.*/", "", $server_url); 
     if ($server_url == '') { 
     return $content; 
     } 
     if (isset($protocol[0])) {
    //开源代码OSPhP.COm.CN
    $new_content = preg_replace('/href="//', 'href="'.$protocol[0].$server_url.'/', $content); 
    $new_content = preg_replace('/src="//', 'src="'.$protocol[0].$server_url.'/', $new_content); //开源OSPhP.COM.CN
     } else { 
    $new_content = $content; 
     } 
     return $new_content; 
    } 
    ?>

    热心网友 时间:2022-04-06 08:24

    提取 Gregarius中的一个函数。可以把网页中的相对路径自动转化成绝对路径。
    <?
    function relative_to_absolute($content, $feed_url) {
    preg_match('/(http|https|ftp):\/\//', $feed_url, $protocol);
    $server_url = preg_replace("/(http|https|ftp|news):\/\//", "", $feed_url);
    $server_url = preg_replace("/\/.*/", "", $server_url);
    if ($server_url == '') {
    return $content;
    }
    if (isset($protocol[0])) {
    $new_content = preg_replace('/href="\//', 'href="'.$protocol[0].$server_url.'/', $content);
    $new_content = preg_replace('/src="\//', 'src="'.$protocol[0].$server_url.'/', $new_content);
    } else {
    $new_content = $content;
    }
    return $new_content;
    }

    热心网友 时间:2022-04-06 09:42

    各有各的好处!
    相对地址更灵活,绝对地址更安全!如果你写的程序准备给大家分享,那就用相对地址,如果只是给自己用,绝对地址更方便。

    热心网友 时间:2022-04-06 11:17

    绝对路径比相对路径执行效率要高

    热心网友 时间:2022-04-06 13:08

    没那么容易出现问题

    声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com