Warning: Undefined array key "topic_id" in /usr/home/yyn/domains/11jn.com/public_html/mobi/list.php on line 5
Warning: Undefined variable $forum_ in /usr/home/yyn/domains/11jn.com/public_html/mobi/list.php on line 21
Warning: Undefined variable $file in /usr/home/yyn/domains/11jn.com/public_html/mobi/list.php on line 35
分类:PHP工具与代码
11-04-06
用于解密形如
[code:1e0deiop]%68%74%74%70%3a%2f%2f%64%62%2e%67%61%6d%65%72%73%6b%79%2e%63%6f%6d%2f%53%6f%66%74%2f%53%68%6f%77%53%6f%66%74%44%6f%77%6e%2e%61%73%70%3f%55%72%6c%49%44%3d%31%26%53%6f%66%74%49%44%3d%31%37%31%36...
11-04-06
用于解密形如
[code:1spdlgzc]\u0068\u0074\u0074\u0070\u003a\u002f\u002f\u0036\u0031\u002e\u0031\u0033\u0036\u002e\u0031\u0035\u0032\u002e\u0035\u0035\u002f\u0073\u0061\u006e\u0067\u0075\u006f\u0067\u0061\u006d\u0065\u002f...
11-04-04
[code:1ovun6pz]
<?php
function downFile($sFilePath)
{
if(file_exists($sFilePath)){
$aFilePath=explode("/",str_replace("\","/",$sFilePath),$sFilePath);
$sFileName=$aFilePa...
11-04-04
[code:2g0nfqin]<?php
//检测文件是否存在
if (!is_file($file)) { die("404 File not found!"); }
$len = filesize($file);//获取文件大小
$filename = basename($file);//获取文件名字
$fi...
11-03-26
转载自httphtml
转载自 chentimi最终编辑 chentimiMySQL数据库优化处理实现千万级快速分页分析,来看下吧。
数据表 collect ( id, title ,info ,vtype) 就这4个字段,其中 title 用定长,info 用text, id 是逐渐,vtype是tinyint,vtyp...
11-03-18
转载自httphtml
PHP+MySQL的组合是构建网站的一个常见搭配,不过如何使用PHP通过Web访问MySQL数据库呢?下面从Web数据库架构的工作原理讲起。
从Web查询数据库:Web数据库架构的工作原理
1、一个用户的浏览器发出一个HTTP请求,请求特...
11-03-18
转载自httphtm
PHP是一种新型的CGI程序编写语言,易学易用,运行速度快,可以方便快捷地编写出功能强大,运行速度快,并可同时运行于 Windows、Unix、 Linux平台的Web后台程序, 内置了对文件上传、密码认证、Cookies操作、邮件收发、动态GIF生...
11-02-24
转载自httphtml
用PHP输出静态页面有2种方法
一种是利用模板技术,另一种是用ob系列函数。两种方法,看起来都差不多,但是实际上,却是不同的。
第一种:利用模板
目前PHP的模板可以说是很多了,有功能强大的smarty,还有简单易用的s...
11-02-24
转载自httphtml
连接到一个 本地为localhost 、 端口为 3306 的mysql服务器上。mysql服务器的帐号是"root",密码是"000000"。
mysql 服务器上有一个数据库 ok , 数据库里有一个表 abc。表 abc 一共为两列,列名分...
11-02-19
转载自httphtml
原因
从php5.1.0开始,php.ini里加了date.timezone这个选项,并且默认情况下是关闭的
也就是显示的时间(无论用什么php命令)都是格林威治标准时间
和我们的时间(北京时间)差了正好8个小时。
解决办法
方法一:在获...