PHP中文网2017-04-17 17:48:14
打包測試;
import java.io.UnsupportedEncodingException;#🎜#import java.io.UnsupportedEncodingException;
import java.util.HashSet;
import java.util.Iterator;#🎜>隨機中文{
雷雷
}
伊谢尔伦2017-04-17 17:48:14
/**
* 生成交易号
*/
public function generatePaymentId()
{
$i = rand(0, 9999);
do {
if (9999 == $i) {
$i = 0;
}
$i++;
$id = time() . str_pad($i, 4, '0', STR_PAD_LEFT);
$row = (new Query())->from(self::tableName())->where(['id' => $id])->exists();
} while ($row);
return $id;
}
樓上的程式碼我就不評價了