Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在解析 HTML 文件并解析出链接。有时它会遇到类似的情况:
./dir/dir/lol.html
我的问题是如何将其转换为绝对 url,解析器知道如果找到链接的 URL。
例如:
parses: http://www.website.com/lol/index.html find: ./dir/dir/haha.html
那我怎么能把它组合成:
http://www.website.com/lol/dir/dir/haha.html
您可以使用parse_url()将 URL 分解为其组件,最重要PHP_URL_PATH的是找出 URL 的路径部分。
PHP_URL_PATH