php
cg171s
这个作者很懒,什么都没留下…
展开
-
time()/date()函数 php中的基本日期时间函数
int time ( void )返回自从 Unix 纪元(格林威治时间 1970 年 1 月 1 日 00:00:00)到当前时间的秒数。 time() 例子 输出距当前时间七天后的日期 $nextWeek = time() + (7 * 24 * 60 * 60);// 7 days; 24 hours; 60 mins; 60secsecho Now:原创 2008-11-27 14:09:00 · 520 阅读 · 0 评论 -
检查数组中是否存在某个值 php-数组函数in_array()
bool in_array ( mixed $needle, array $haystack [, bool $strict] )在 haystack 中搜索 needle,如果找到则返回 TRUE,否则返回 FALSE。 如果第三个参数 strict 的值为 TRUE 则 in_array() 函数还会检查 needle 的类型是否和 haystack 中的相同。 注意:原创 2008-11-27 10:01:00 · 21375 阅读 · 0 评论 -
php 通过fsockopen 模拟POST提交
$URL=‘http://xxx.xxx.xxx.xx/xx/xxx/top.php;$post_data[clientname] = "test08";$post_data[clientpasswd] = "test08";$post_data[原创 2009-12-16 18:00:00 · 812 阅读 · 0 评论