0

URLを分離し、URLから特定のブランド名のみを取得する方法を知りたい

http://www.example.com/mobiles/nokia-mobile-price-list.php
http://www.example.com/camera/canon-camera-price-list.php

このURLを分離して、次のようなブランド名のみを取得したい

ノキア、キヤノン

$brand = "nokia";
$brand ="canon";
4

2 に答える 2

2

あなたが試すことができます

$url = parse_url("http://www.example.com/mobiles/nokia-mobile-price-list.php");
$brand = strstr(basename($url['path']) ,"-",true);

echo $brand ;

出力

 nokia
于 2012-10-11T09:57:46.320 に答える
1

記号を含まない/との間の部分をキャプチャする正規表現を使用できます。.php/

<?php
$url = 'http://www.example.com/camera/canon-camera-price-list.php';
preg_match('/\/([^\/-]+)-[^\/]*.php/', $url, $matches);
echo $matches[1];
于 2012-10-11T10:05:52.863 に答える