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


PHP control::search方法代碼示例

本文整理匯總了PHP中control::search方法的典型用法代碼示例。如果您正苦於以下問題:PHP control::search方法的具體用法?PHP control::search怎麽用?PHP control::search使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在control的用法示例。


在下文中一共展示了control::search方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: control

<?php

include "../control.php";
$co = new control();
$search = isset($_POST['input']) ? $co->search($_POST['input']) : "403";
$mass = $search !== false ? str_replace(":<!#:#!>:", "<br/>Base:", $search) : $co->fromOther($_POST['input']);
echo $mass;
開發者ID:Qti3e,項目名稱:MD5Cracker,代碼行數:7,代碼來源:crack.php

示例2: control

<?php

include "../control.php";
$co = new control();
$commend = $_GET['commend'];
$com = substr($commend, 3);
$re = array("status" => true);
if (substr($commend, 0, 3) == "-c/") {
    $search = $co->search($com);
    $mass = $search !== false ? $search : $co->fromOther($com);
    if ($mass === "This isn't a MD5 hash.") {
        $re['status'] = false;
        $re['code'] = "403";
    } elseif ($mass === "Not found") {
        $re['status'] = false;
        $re['code'] = "404";
    } else {
        $a = explode(":<!#:#!>:", $mass);
        if (isset($a[1])) {
            $re['base'] = $a[1];
        }
        $re['return'] = $a[0];
    }
} elseif (substr($commend, 0, 3) == "-g/") {
    $a = $co->newHash($com);
    $re['return'] = $a;
    $re['base'] = $com;
} else {
    $re['status'] = false;
    $re['code'] = "405";
}
開發者ID:Qti3e,項目名稱:MD5Cracker,代碼行數:31,代碼來源:api.php


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