PHP URL Shortening Algorithm

后端 未结 7 887
说谎
说谎 2020-12-28 09:22

Could anyone recommend a preferred algorithm to use for URL shortening? I\'m coding using PHP. Initially I thought about writing something that would start at a character su

7条回答
  •  既然无缘
    2020-12-28 09:34

    Here try this method :

    hash_hmac('joaat', "http://www.example.com/long/url/", "secretkey");
    

    It will provide you with hash value fit for a professional url shortener, e.g: '142ecd53'

提交回复
热议问题