本文整理汇总了PHP中test_name函数的典型用法代码示例。如果您正苦于以下问题:PHP test_name函数的具体用法?PHP test_name怎么用?PHP test_name使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了test_name函数的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: test_name
<?php
function test_name($name)
{
if (1 === preg_match("/^[A-Za-z][A-Za-z0-9]*(?:[_-][A-Za-z0-9]+)*\$/", $name)) {
print "{$name} id OK\n";
} else {
print "{$name} failed\n";
}
}
test_name("a_name");
test_name("a_name_more_and_more");
test_name("_a_name");
test_name("a-name-more-and-more");
test_name("-a_name");
test_name("a-name-more_and-more_some");
示例2: test_sort
function test_sort($a, $b)
{
global $cwd;
$a = test_name($a);
$b = test_name($b);
$ta = strpos($a, "{$cwd}/tests") === 0 ? 1 + (strpos($a, "{$cwd}/tests/run-test") === 0 ? 1 : 0) : 0;
$tb = strpos($b, "{$cwd}/tests") === 0 ? 1 + (strpos($b, "{$cwd}/tests/run-test") === 0 ? 1 : 0) : 0;
if ($ta == $tb) {
return strcmp($a, $b);
} else {
return $tb - $ta;
}
}
示例3: alert
</script>
<?php
} else {
$is_examid = true;
}
if (empty($name)) {
$nameErr = "名字未填写";
?>
<script>
alert("<?php
echo $nameErr;
?>
");
</script>
<?php
} elseif (!test_name($name)) {
$nameErr = "姓名为2~3个汉字";
?>
<script>
alert("<?php
echo $nameErr;
?>
");
</script>
<?php
} else {
$is_name = true;
}
if ($is_examid && $is_name) {
$_SESSION['examid'] = $examid;
$_SESSION['name'] = $name;