- 浏览: 569063 次
- 性别:
- 来自: 上海
-
最新评论
-
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超时机制
文章列表
$rs = mysql_query($limit);
$numbers = mysql_num_rows($rs);
可以使用SHOW CHARACTER SET语句列出可用的字符集:
mysql> SHOW CHARACTER SET;
Database Character Set and Collation
CREATE DATABASE db_name
[[DEFAULT] CHARACTER SET charset_name]
[[DEFAULT] COLLATE collation_name]
ALTER DATABASE db_name
[[DEFAULT] CHARACTER SET charset_name]
[[DEFAULT] COLL ...
- 2009-12-04 16:45
- 浏览 917
- 评论(0)
filename.substring(filename.lastIndexOf('.')+);
- 2009-12-03 15:53
- 浏览 1197
- 评论(0)
//fix bug stefan
var empty = true;
var inputs = document.getElementsByName('<?=$tableColumns[3];?>');
var i = 0;
for(i=0; i<inputs.length; i++) {
if(inputs[i].checked) {
//alert(inputs[i].value);
empty = false;
}
}
if(empty) {
alert(noteI ...
- 2009-11-30 17:01
- 浏览 1283
- 评论(0)
(function($){
$(document).ready(function(){
});
})(jQuery);
- 2009-11-26 14:15
- 浏览 818
- 评论(0)
<SCRIPT LANGUAGE="javascript"> js脚本开始;
window.open弹出新窗口的命令;
'page.html'弹出窗口的文件名;
'newwindow'弹出窗口的名字(不是文件名),非必须,可用空''代替;
height=100窗口高度;
width=400窗口宽度;
top=0窗口距离屏幕上方的象素值;
left=0窗口距离屏幕左侧的象素值;
toolbar=no是否显示工具栏,yes为显示;
menubar,scrollbars表示菜单栏和滚动栏。
resizabl ...
- 2009-11-24 14:46
- 浏览 901
- 评论(0)
join、left join、right join 后面跟查询关联表名
on 后面跟两表关联条件
SELECT u.uid, u.name, pf.name, pv.fid, pv.value
FROM profile_values pv
JOIN users u ON u.uid = pv.uid
JOIN profile_fields pf ON pf.fid = pv.fid
WHERE u.name = 'stefan321'
AND pf.name = 'zipcode'
- 2009-11-20 19:31
- 浏览 2110
- 评论(0)
/ 定界符
^ 字符串头
$ 字符串尾
[a-z] 所有小写字母
[A-Z] 所有大写字母
[0-9] 所有数字
? 零或一个紧接前的字符
* 零或多个紧接前的字符
+ 一或多个紧接前的字符
{4} 4个紧接前的字符
{4,8} 4-8个紧接前的字符
. 任意字符
(red|green|blue) Red 或 green 或 blue(红 或 绿 或 蓝)
s 空格
特殊字符(需要在前加 )
( ) [ ] . * ? + ^ | $
- 2009-11-20 17:23
- 浏览 1269
- 评论(0)
MySql 清空数据表
TRUNCATE TABLE {tablename}
- 2009-11-18 22:08
- 浏览 2545
- 评论(0)
//Retrieve the comment mode for the given node ID (none, read, or read/write).
db_result(db_query('SELECT comment FROM {node} WHERE nid = %d', $nid));
- 2009-11-17 19:47
- 浏览 900
- 评论(0)
/**
* Implementation of hook_theme()
*/
function node_theme() {
return array(
'node' => array(
'arguments' => array('node' => NULL, 'teaser' => FALSE, 'page' => FALSE),
'template' => 'node',
'file' => 'node.pages.inc',
),
);
}
- 2009-11-17 17:40
- 浏览 856
- 评论(0)
<?php
global $user;
// Check to see if $user has the administrator role.
if (in_array('administrator', array_values($user->roles))) {
// Do something.
}
?>
<?php
/**
* Check to see if a user has been assigned a certain role.
*
* @param $role
* The name of the r ...
- 2009-11-11 22:31
- 浏览 1006
- 评论(0)
<?php global $base_url; print $base_url;?>
- 2009-11-05 17:11
- 浏览 1148
- 评论(0)
<?php
$bresval = false;
if (arg(0) == 'node' && ctype_digit(arg(1))) {
$node = node_load(arg(1));
if ($node->type == 'event') {
$bresval = true;
}
}
return $bresval;
?>
In this particular case, we will only display the block if node type is "event" ...
- 2009-11-05 16:58
- 浏览 950
- 评论(0)