语法分析是指将(字符串或文本)分析成逻辑语法组件。
将WordPress URL纳入问题是这样的:
// Get array of URL \'scheme\', \'host\', and \'path\'.
$url_parse = wp_parse_url( \'https://developer.wordpress.org/reference/functions/wp_parse_url/\' );
// Output URL\'s path.
echo $url_parse[\'path\'];
/*
Array
(
[scheme] => https
[host] => developer.wordpress.org
[path] => /reference/functions/wp_parse_url/
)
*/
另一种考虑方法是在您的WP设置中。它也将其分解:
https://www.example.coom/2019/09/12/sample-post/
与相同
%scheme%//:%host%/%year%/%monthnum%/%day%/%postname%/
这也有其他用途。在使用Wordpress API时,您需要了解url的部分内容(端点、版本等)。
解析是将url分解,以便在使用时了解其各个部分。