我想要一个像www.something.com/Somenumber/index.html
的网址示例www.google.com/101521145/index.html
表示我需要在所需页面之前的随机数
是否可以使用PHP和Sql
答案 0 :(得分:0)
如果您需要随机性,那么:
<?php
$time = round( microtime( true ) * 1000 ); //microtime returns the current microseconds of you server
echo $time;
?>