`
天梯梦
  • 浏览: 13782971 次
  • 性别: Icon_minigender_2
  • 来自: 洛杉矶
社区版块
存档分类
最新评论
文章列表
A Comma separated values (CSV) file is a computer data file used for implementing the tried and true organizational tool, the Comma Separated List. The CSV file is used for the digital storage of data structured in a table of lists form, where each associated item (member) in a group is in associ ...
I wrote a codeigniter library through which you can retrieve the rss feeds from xml file Add the below code in Rss.php file and save the file in application library folder ,     <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); /** * CodeIgniter * * An open sour ...
This Simplexml class provides an alternative implementation of the SimpleXML API that works under PHP 4, so if you have an application that is running under PHP4 environment this is really helpful for you.   The original class was created by Taha Paksu of http://www.phpclasses.org and it was mo ...
Wordpress 音频播放器 1、flash播放器 swf   <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="550" height="450"> <param name="al ...
代码: <?php function random($length, $numeric = 0) { //返回随机数 mt_srand((double)microtime() * 1000000); if($numeric){ $hash = sprintf('%0'.$length.'d', mt_rand(0, pow(10, $length) - 1)); }else{ $hash = ''; $chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwx ...
先编写json.php:   <?php echo json_encode(array('foo' => 'bar')); ?>   再编写json.htm: <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script> <script> $.getJSON('/json.php', function(data){ alert(data.foo); }); </script ...
先来介绍几个核心函数:   mktime 函数 mktime() 函数返回一个日期的 Unix 时间戳。 参数总是表示 GMT 日期,因此 is_dst 对结果没有影响。 参数可以从右到左依次空着,空着的参数会被设为相应的当前 GMT 值。 语法 mktime(hour,minute,second,month,day,year,is_dst)   参数 描述 hour 可选。规定小时。 minute 可选。规定分钟。 second 可选。规定秒。 month 可选。规定用数字表示的月。 day 可选。规定天。 year 可选。规 ...
常用JavaScript函数 16 - 30(自我总结) 常用JavaScript函数 31- 46 (自我总结) 1、  调整图片大小,不走形(FF IE 兼容)/ 剪切图片(overflow:hidden) 2、  控制textarea区域文字数量 3、  点击显示新窗口 4、  input框自动随内容自动变长 5、  添加收藏夹 6、  设置首页 7、  Jquery + Ajax 判断用户是否存在 8、  判断email格式是否正确 9、  综合判断用户名(长度,英文字段等) 10、新闻滚动 11、 只允许输入正整数 (shopping cart 使用 ...
方法主要有三种 转换函数、强制类型转换、利用js变量弱类型转换。   1. 转换函数 js提供了parseInt()和parseFloat()两个转换函数。前者把值转换成整数,后者把值转换成浮点数。只有对String类型调用这些方法,这两个函数才能正确运行;对其他类型返回的都是NaN(Not a Number)。   在判断字符串是否是数字值前,parseInt()和parseFloat()都会仔细分析该字符串。parseInt()方法首先查看位置0处的 字符,判断它是否是个有效数字;如果不是,该方法将返回NaN,不再继续执行其他操作。但如果该字符是有效数字,该方法将查看位置1处的 ...
1 echo() 可以同时输出多个字符串,可以多个参数,并不需要圆括号,无返回值。 2 print() 只可以同时输出一个字符串,一个参数,需要圆括号,有返回值,当其执行失败时返flase .print  的用法和C语言很像,所以会对输出内容里的%做特殊 ...
PHP文本随机显示  rand display text   本代码实现功能,随机显示一文本文档中的代码行。其中文本文件内容注意:一行显示一条完整内容不要有回车,不能有半角的“引号”。文本名称:yanyu.txt 内容范例 A bad beginning makes a bad ending. 恶其始者必恶其终。 A bad bush is better than the open field. 有胜于无。 A bad compromise is better than a good lawsuit. 吃亏的和解也比胜诉强。 A bad conscience is ...
让PHP支持页面后退的两种方法(Cache-control  php back form) 在开发过程中,往往因为表单出错而返回页面的时候填写的信息都不见了,为了支持页面回跳,可以通过两种方法实现。第一,使用Header方法设置消息头Cache-control ...
<!--图片地址,请您自己更改!--> <img src="http://www.qqbye.com/wawa/UploadFiles_3996/200807/2008071904350239_S.jpg" style="position:relative;" onMouseOver="init(this);rattleimage()" onMouseOut="stoprattle(this)" /> <script language="JavaScript"&g ...
PHP chmod() 函数 (upload image permit) PHP Filesystem 函数 定义和用法 chmod() 函数改变文件模式。 如果成功则返回 TRUE,否则返回 FALSE。 语法 chmod(file,mode) 参数 描述 file 必需。规定要检查的文件。 mode 可选。规定新的权限。 mode 参数由 4 个数字组成: 第一个数字永远是 0 第二个数字规定所有者的权限 第二个数字规定所有者所属的用户组的权限 第四个数字规定其他所有人的权限 可能的值(如需设置多个权限,请 ...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset ...
Global site tag (gtag.js) - Google Analytics