在网址路径中解析网址和单独的单词

时间:2015-12-14 21:08:55

标签: php parsing url explode

我正在尝试从网址中提取一位数据。

URL的一个示例是:

http://website.com/product/category-type-section-detail-1234567589

我要从路径中提取的数据是$_POST

我正在使用: - parse_url提取路径

file_get_contents('php://input')
  • 爆炸分离路径

    /产物

    /类别型截面细节-1234567589

如何提取类型?

1 个答案:

答案 0 :(得分:0)

单步:

<?php
$url="http://website.com/product/category-type-section-detail-1234567589";
$x=parse_url($url, PHP_URL_PATH);
$y=explode('-',$x);

echo $y[1]; //type