mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2024-11-10 09:58:41 +00:00
34 lines
856 B
PHP
34 lines
856 B
PHP
<?php
|
|
|
|
function uojRand($l, $r) {
|
|
return mt_rand($l, $r);
|
|
}
|
|
|
|
function uojRandString($len, $charset = '0123456789abcdefghijklmnopqrstuvwxyz') {
|
|
$n_chars = strlen($charset);
|
|
$str = '';
|
|
for ($i = 0; $i < $len; $i++) {
|
|
$str .= $charset[uojRand(0, $n_chars - 1)];
|
|
}
|
|
return $str;
|
|
}
|
|
|
|
function uojRandAvaiableFileName($dir, $length = 20, $suffix = '') {
|
|
do {
|
|
$fileName = $dir . uojRandString($length);
|
|
} while (file_exists(UOJContext::storagePath().$fileName.$suffix));
|
|
return $fileName.$suffix;
|
|
}
|
|
|
|
function uojRandAvaiableTmpFileName() {
|
|
return uojRandAvaiableFileName('/tmp/');
|
|
}
|
|
|
|
function uojRandAvaiableSubmissionFileName() {
|
|
$num = uojRand(1, 10000);
|
|
if (!file_exists(UOJContext::storagePath()."/submission/$num")) {
|
|
mkdir(UOJContext::storagePath()."/submission/$num", 0777, true);
|
|
}
|
|
return uojRandAvaiableFileName("/submission/$num/");
|
|
}
|