我正在尝试从网址中提取一位数据。
URL的一个示例是:
http://website.com/product/category-type-section-detail-1234567589
我要从路径中提取的数据是$_POST
。
我正在使用: - parse_url提取路径
file_get_contents('php://input')
爆炸分离路径
/产物
/类别型截面细节-1234567589
如何提取类型?
答案 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