- 浏览: 568911 次
- 性别:
- 来自: 上海
-
最新评论
-
jiyilee:
的确,不少命令都不能用,不方便啊。。
Apple:如何在iphone、ipad上安装一些常用命令行命令 -
idong杨:
[url][url][url][url][url][/url] ...
php中将SimpleXMLElement Object数组转化为普通数组 -
idong杨:
...
php中将SimpleXMLElement Object数组转化为普通数组 -
wcily123:
递归删除指定目录下的.git文件find . -name .g ...
Linux上批量删除.svn目录 -
yilinsitian:
受教了,好像Socket通信超时机制 还没有说吧
Android·HTTP超时机制
文章列表
php输出东西,会保存在一个php维护的内存里,称为buffer也行,缓存也行,都是一个意思。然后当这个buffer满了,php会自动往web server发送这些数据。
也就是说每次echo,并不一定会输出东西,而是保存在buffer里。
ob_start()的意思,可以理解为(但是实际上和我下面的说法有区别),这个buffer由ob_系列函数来来控制,也就是,PHP不会维护自己的 buffer,不会自动把buffer的内容自动发送到web server,直到你ob_end()或者类似的ob操作。
ob_函数一般用来捕获当前的输出,跟效率是没什么关系的。至于为什么捕获输出,原因很多,例如 ...
- 2009-11-03 21:07
- 浏览 1238
- 评论(0)
[^\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+$ //匹配由 ...
- 2009-11-02 20:55
- 浏览 752
- 评论(0)
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++) ...
- 2009-11-02 12:45
- 浏览 956
- 评论(0)
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');
}
- 2009-10-19 00:13
- 浏览 1879
- 评论(0)
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.其它
$(" ...
- 2009-10-14 23:55
- 浏览 3599
- 评论(0)
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 ...
- 2009-10-12 23:36
- 浏览 1134
- 评论(0)
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 ...
- 2009-10-09 15:57
- 浏览 1091
- 评论(0)
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 ...
- 2009-10-07 11:42
- 浏览 1223
- 评论(0)
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 ...
- 2009-10-07 10:59
- 浏览 1462
- 评论(0)
$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)) { ...
- 2009-10-05 15:58
- 浏览 1460
- 评论(0)
<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 ...
- 2009-10-02 01:04
- 浏览 1533
- 评论(0)
<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);
/ ...
- 2009-10-01 21:10
- 浏览 1495
- 评论(0)
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 ...
- 2009-09-29 16:00
- 浏览 1276
- 评论(0)
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 ...
- 2009-09-24 20:43
- 浏览 1010
- 评论(0)