mirror of
https://github.com/renbaoshuo/UOJ-Luogu-RemoteJudge.git
synced 2024-12-12 13:46:29 +00:00
6 lines
99 B
PHP
6 lines
99 B
PHP
|
<?php
|
||
|
|
||
|
function validateLuoguProblemId($str) {
|
||
|
return preg_match('/^P[1-9][0-9]{3,5}$/', $str);
|
||
|
}
|