當前位置: 首頁>>代碼示例>>PHP>>正文


PHP test_name函數代碼示例

本文整理匯總了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");
開發者ID:robertblackwell,項目名稱:srmn,代碼行數:16,代碼來源:test.php

示例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;
    }
}
開發者ID:wgy0323,項目名稱:ffmpeg-php,代碼行數:13,代碼來源:run-tests.php

示例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;
開發者ID:devsnippet,項目名稱:MyWechat,代碼行數:31,代碼來源:cet_query.php


注:本文中的test_name函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。