`
文章列表
php输出东西,会保存在一个php维护的内存里,称为buffer也行,缓存也行,都是一个意思。然后当这个buffer满了,php会自动往web server发送这些数据。 也就是说每次echo,并不一定会输出东西,而是保存在buffer里。 ob_start()的意思,可以理解为(但是实际上和我下面的说法有区别),这个buffer由ob_系列函数来来控制,也就是,PHP不会维护自己的 buffer,不会自动把buffer的内容自动发送到web server,直到你ob_end()或者类似的ob操作。 ob_函数一般用来捕获当前的输出,跟效率是没什么关系的。至于为什么捕获输出,原因很多,例如 ...
[^\u4E00-\u9FA5]([\u4E00-\u9FA5]) //中文(非中文) /(^\s*)|(\s*$)/g //字符串前后空格 \w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)* //邮箱 [a-zA-z]+://[^\s]* //URL ^[A-Za-z]+$ //匹配由26个英文字母组成的字符串 ^[A-Z]+$ //匹配由26个英文字母的大写组成的字符串 ^[a-z]+$ //匹配由26个英文字母的小写组成的字符串 ^[A-Za-z0-9]+$ //匹配由数字和26个英文字母组成的字符串 ^\w+$ //匹配由 ...
var returnValue = true; var zip_code = $('#edit-zipcode').attr('value'); if(zip_code.length > 5) { returnValue = false; $('#edit-zipcode').addClass('error'); }else if(zip_code.length >0){ for(var i=0; i<zip_code.length; i++) ...
var pattern = new RegExp(/^\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$/g); var email = $('#edit-mail').attr('value'); if(!pattern.test(email)) { returnValue = false; $('#edit-mail').addClass('error'); }
1.jquery如何判断元素存在 jquery选择器获取element 无论element是否存在都将返回一个对象 var my_element=$("#myId"); 这里无论元素"myid"是否存在,my_element始终是一个object 使用下面的方法判断"myid"元素是否存在 if(my_element.length>0)){ alert("exist"); }else{ alert("not found"); } 2.其它 $(" ...
theme_pager  ( $  tags = array(),    $  limit = 10,    $  element = 0,    $  parameters = array(),    $  quantity = 9   )    Format a query pager. Menu callbacks that display paged query results should call theme('pager') to retrieve a pager control so that users can view other results. For ...
window.event.screenX (e4) window.event.screenY (e4) window.event.clientX (e4) window.event.clientY (e4) window.event.x (e4) window.event.y (e4) event.screenX (N4) event.screenY (N4) event.pageX (N4) event.pageY (N4) event.width (N4) event.height (N4) event.layerX (N4) event.layerY (N ...
module.info ; $Id$ name = Form example description = Shows how to build a Drupal form. package = Pro Drupal Development core = 6.x module.module <?php // $Id$ /** * @file * Play with the Form API. */ /** * Implementation of hook_menu(). */ function formexample_menu() { $items['forme ...

Drupal Form API

Drupal Form API Drupal’s form engine takes care of generating HTML for the forms to be displayed and securely processing submitted forms using three phases: validation, submission, and redirection. //identify the form $form_id //describing form $form //contains form info $form_state validati ...
$type = 'blog'; $status = 1; // In the node table, a status of 1 means published. $sql = "SELECT * FROM {node} n WHERE type = '%s' AND status = %d ORDER BY n.created DESC"; $result = db_query_range(db_rewrite_sql($sql), $type, $status, 0, 10); while ($data = db_fetch_object($result)) { ...
<a style="border-right: black 2px groove; padding-right: 5px; border-top: black 2px groove; margin-top: 5px; padding-left: 5px; font-size: 10pt; padding-bottom: 2px; border-left: black 2px groove; color: black; padding-top: 0px; border-bottom: black 2px groove; font-family: sans-serif; backgr ...
<script type="text/javascript"> (function($){ $('a').each(function(i,o){ $(o).click(function(){ var link = $(o).attr('href'); //alert(link); //$(window.parent.document).attr('href', link); / ...

drupal block

Template files are searched in the following order:      block-[module]-[delta].tpl.php      block-[module].tpl.php      block-[region].tpl.php      block.tpl.php For example, the user login block has a delta of '0'. If you put it in the left sidebar, when it's rendered, PHPTemplate will search f ...
update users set mail=concat(mail,"_bak")
2.8 Layer - Registrierung (Pre-Phase) 注册部分见19页 2.9 Layer - Bestätigungsseite (Pre-Phase) 确认 2.10 Layer: Bestätigung Double-Opt-In (Pre-Phase) 2.11 Mein Profil (Pre-Phase) 我的资料 2.12 Layer: Passwort vergessen (Pre-Phase) 忘记密码 2.13 Layer: Profil löschen (Pre-Phase) 资料删除 2.14 Home (Pre-Phase) 2.15 Einsp ...
Global site tag (gtag.js) - Google Analytics