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


PHP sql_db::findByColumnOnce方法代碼示例

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


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

示例1: strftime

    $subject = str_replace("%member%", "-", $subject);
    $subject = str_replace("%name%", $_POST["name"] . " " . $_POST["surname"], $subject);
    $text = str_replace("%created%", strftime("%Y-%m-%d %H:%M", $created), $text);
    $text = str_replace("%changed_at%", "-", $text);
    $text = str_replace("%request_id%", $request_id, $text);
    $text = str_replace("%type%", "add", $text);
    $text = str_replace("%state%", "awaiting", $text);
    $text = str_replace("%member_id%", "-", $text);
    $text = str_replace("%member%", "-", $text);
    $text = str_replace("%admin_id%", "-", $text);
    $text = str_replace("%admin%", "-", $text);
    $text = str_replace("%reason%", "-", $text);
    $text = str_replace("%admin_response%", "-", $text);
    $text = str_replace("%ip%", $_SERVER["REMOTE_ADDR"], $text);
    $text = str_replace("%ptr%", gethostbyaddr($_SERVER["REMOTE_ADDR"]), $text);
    $distro = $db->findByColumnOnce("cfg_templates", "templ_id", $_POST["distribution"]);
    $location = $db->findByColumnOnce("locations", "location_id", $_POST["location"]);
    $application = '
     Nickname: ' . $_POST["nick"] . '
         Name: ' . $_POST["name"] . ' ' . $_POST["surname"] . '
        Email: ' . $_POST["email"] . '
       Adresa: ' . $_POST["address"] . ", " . $_POST["zip"] . " " . $_POST["city"] . ", " . $_POST["country"] . '
Year of birth: ' . $_POST["birth"] . '
       Jabber: 
          How: ' . $_POST["how"] . '
         Note: ' . $_POST["note"] . '
     Currency: ' . $_POST["currency"] . '
 Distribution: ' . $distro["templ_id"] . ' ' . $distro["templ_label"] . '
     Location: ' . $location["location_id"] . ' ' . $location["location_label"] . '
	';
    $text = str_replace("%changed_info%", $application, $text);
開發者ID:Jakuje,項目名稱:www.vpsfree.cz,代碼行數:31,代碼來源:prihlaska.php


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