Remove domain extension

前端 未结 5 1152
情书的邮戳
情书的邮戳 2020-11-30 14:10

So let\'s say I have just-a.domain.com,just-a-domain.info,just.a-domain.net how can I remove the extension .com,.net.info ... and I need the result

5条回答
  •  春和景丽
    2020-11-30 14:36

    strrpos($str, ".")
    

    Will give you the index for the last period in your string, then you can use substr() with the index and return the short string.

提交回复
热议问题