PHP中的魔术方法总结:__construct,__destruct,__call,__callStatic,__get,__set,__isset,__unset,__sleep,__wakeup,__toString,__set_state,__cloneand__autoload1、__get...
分类:
Web程序 时间:
2014-11-21 12:05:48
阅读次数:
215
function check_wap() { if (isset($_SERVER['HTTP_VIA'])) return true; if (isset($_SERVER['HTTP_X_NOKIA_CONNECTION_MODE'])) return true; if (i...
分类:
移动开发 时间:
2014-11-20 20:20:41
阅读次数:
223
<?php/** * 获取当前页面完整URL地址 */function get_url() { $sys_protocal = isset($_SERVER['SERVER_PORT']) && $_SERVER['SERVER_PORT'] == '443' ? 'https://' : '...
分类:
Web程序 时间:
2014-11-20 18:29:12
阅读次数:
219
{template "content","header"} 调用根目录下phpcms\template\content\header文件{CHARSET} 字符集(gbk或者utf-8){if isset($SEO['title']) && !empty($SEO['title'])}{$S...
分类:
Web程序 时间:
2014-11-20 15:13:55
阅读次数:
181
if (isset($_SERVER["HTTP_X_REQUESTED_WITH"]) && $_SERVER["HTTP_X_REQUESTED_WITH"] === "XMLHttpRequest") {}
分类:
Web程序 时间:
2014-11-19 15:37:14
阅读次数:
127
<?php
if(isset($_FILES['upfile']))
{
if (is_uploaded_file($_FILES['upfile']['tmp_name'])){
$upfile=$_FILES["upfile"];
$name = $upfile["name"];
$type = $upfile["type"];
$size = $upfile["size"];
$tmp...
分类:
Web程序 时间:
2014-11-19 11:22:18
阅读次数:
200
<?php
if(isset($_FILES['upfile']))
{
if (is_uploaded_file($_FILES['upfile']['tmp_name'])){
$upfile=$_FILES["upfile"];
$name = $upfile["name"];
$type = $upfile["type"];
$size = $upfile["size"];
$tmp...
分类:
Web程序 时间:
2014-11-19 01:22:00
阅读次数:
196
array('name','getName',3,'callback'), // 对name字段在新增和编辑的时候回调getName方法if(isset($_GET['id'])) { // 根据id查询结果$pid=isset($_POST['pid'])?(int)$_POST['pid']:....
分类:
其他好文 时间:
2014-11-15 20:04:24
阅读次数:
279
connect(); $this->prefix = $prefix; }//End Function public function connect() { if(!isset(self::$_cacheObj)) { ...
分类:
其他好文 时间:
2014-11-13 14:37:18
阅读次数:
289
table=$table; $this->pagesize=$pagesize; $sql="select * from ".$table.""; $query=mysql_query($sql); $this->page=isset($_GET['page'])?$_GET['page']:1; ...
分类:
其他好文 时间:
2014-11-12 19:29:11
阅读次数:
175