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


PHP TextField::setSize方法代碼示例

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


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

示例1: CaptchaField

 /**
  * FormHandler::captchaField()
  *
  * Creates a captchafield on the form using Securimage - A PHP class for creating and managing form CAPTCHA images
  *
  * @param string $title: The title of the field
  * @param string $name: The name of the field
  * @param int $size: The size of the field
  * @param int $maxlength: The allowed max input of the field
  * @param string $extra: CSS, Javascript or other which are inserted into the HTML tag
  * @return void
  * @access public
  * @author Johan Wiegel
  * @since 27-11-2007
  */
 function CaptchaField($title, $name, $size = null, $maxlength = null, $extra = null)
 {
     static $bCaptcha = true;
     if ($bCaptcha) {
         $bCaptcha = false;
         require_once FH_INCLUDE_DIR . 'fields/class.TextField.php';
         // create the field
         $fld = new TextField($this, $name);
         if ($this->isPosted()) {
             $fld->setValidator('FH_CAPTCHA');
         }
         if (!empty($size)) {
             $fld->setSize($size);
         }
         if (!empty($maxlength)) {
             $fld->setMaxlength($maxlength);
         }
         if (!empty($extra)) {
             $fld->setExtra($extra);
         }
         $this->ImageButton(FH_FHTML_DIR . 'securimage/securimage_show.php?sid=' . md5(uniqid(time())), null, 'onclick="return false;" style="cursor:default;"');
         // register the field
         $this->_registerField($name, $fld, $title);
         // empty the field if the value was not correct.
         if ($this->isPosted() && !$this->isCorrect()) {
             $this->setValue($name, "", true);
         }
     } else {
         trigger_error("Only one captchafield in a form", E_USER_WARNING);
     }
 }
開發者ID:jwiegel,項目名稱:FormHandler,代碼行數:46,代碼來源:class.FormHandler.php


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