Home >Backend Development >PHP Tutorial >How to convert such a section of python into SegmentFault
<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>
<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