php相对路径转化成绝对路径_PHP教程
程序员文章站
2022-04-21 16:14:16
...
提取 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;
}
?>
推荐阅读
-
php使用mb_check_encoding检查字符串在指定的编码里是否有效_PHP教程
-
在Mac OS上编译安装Nginx+PHP+MariaDB开发环境的教程,nginxmariadb_PHP教程
-
安装、配置和测试Windows,Apache,Informix与PHP服务器的分步指南_PHP教程
-
PHP的Yii框架中使用数据库的配置和SQL操作实例教程_PHP
-
php源代码安装常见错误与解决办法_PHP教程
-
PHP $_REQUEST数组安全隐患_PHP教程
-
Windows系统下配置安装Apache+php实战_PHP教程
-
如何用php提取mp3文件里的信息_PHP教程
-
Codeigniter的dom类用法实例_PHP教程
-
不需要GD库的情况下实现验证码_PHP教程