我想知道如何分隔网址并仅从网址
中获取特定的品牌名称http://www.example.com/mobiles/nokia-mobile-price-list.php
http://www.example.com/camera/canon-camera-price-list.php
我想将此网址分开并仅使用
等品牌名称诺基亚,佳能
$brand = "nokia";
$brand ="canon";
答案 0 :(得分:2)
你可以尝试
$url = parse_url("http://www.example.com/mobiles/nokia-mobile-price-list.php");
$brand = strstr(basename($url['path']) ,"-",true);
echo $brand ;
输出
nokia
答案 1 :(得分:1)
您可以使用正则表达式,它将捕获/
和.php
之间不包含/
符号的部分。
<?php
$url = 'http://www.example.com/camera/canon-camera-price-list.php';
preg_match('/\/([^\/-]+)-[^\/]*.php/', $url, $matches);
echo $matches[1];