Home >Backend Development >PHP Tutorial >How to convert such a section of python into SegmentFault

How to convert such a section of python into SegmentFault

WBOY
WBOYOriginal
2016-09-09 08:28:021148browse

<code>def getVMS(tvid, vid):
    t = int(time.time() * 1000)
    key = 'd5fb4bd9d50c4be6948c97edd7254b0e'
    sc = hashlib.new('md5', bytes(str(t) + key  + vid, 'utf-8')).hexdigest()
    return sc</code>

Reply content:

<code>def getVMS(tvid, vid):
    t = int(time.time() * 1000)
    key = 'd5fb4bd9d50c4be6948c97edd7254b0e'
    sc = hashlib.new('md5', bytes(str(t) + key  + vid, 'utf-8')).hexdigest()
    return sc</code>

Completely literal translation

<code class="php">function getVMS($tvid, $vid) {
    $t   = floor(microtime(1) * 1000);
    $key = 'd5fb4bd9d50c4be6948c97edd7254b0e';
    $sc  = md5($t . $key . $vid);
    return $sc;
}</code>
  • Use floor instead of intval because the time milliseconds exceed the maximum range of an integer

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn