我想用php剪切一个html链接。
html链接每次都是相同的模式
domain.com/forum/members/84564-name.html
我想从名字中获取84564。 / forum / members /每次都是一样的。 而user-id之后的“ - ”也是everstime相同的。 你能帮我提取用户名吗?
答案 0 :(得分:0)
我将假设用户ID可能不总是5位数。
$domainSplit = explode("/", $theDomain); // split into parts
$theIdSplit=explode("-", $domainSplit[3]); // split 84564-name.html
$id=$theIdSplit[0];