常用的php函数,文件的读写 file_get_contents() file_put_contents() fopen() //创建目录,删除文件,移动文件 mkdir() unlink() rename() //几个常用的字符操作函数 substr() strrchr() strrpos()...
php
php几种抓取网页的方法推荐
几种抓取网页的方法推荐使用curl和file_get_contents 实际上任何能够模拟http协议的方法都可以实现网页抓取,几个函数本质上都是使用socket模拟的http协议,这里给出几种简单的实现方法 <?php @header("Co...
使用php封装的mysql数据操作类,以PDO的形式连接数据库
使用php封装的mysql数据操作类,以PDO的形式连接数据库 <?php class MysqlDB { protected static $_instance = null; protected $dsn; protected $pdo; private function __co...
帝国灵动标签详解
使用灵动标签首先要在系统参数设置---信息设置---模板支持程序代码(开启) [e:loop={"sql语句",500,24,0}] [e:loop={"select * from [!db.pre!]ecms_news where id='$navinfor[id]'",1,24,0}] $navinfor[字...
php使用百度ping服务代码实例
<?php function postUrl($url, $postvar) { $ch = curl_init(); $headers = array( "POST".$url."HTTP/1.0", "Content-type: text/xml; charset=\"gb2312\"", "Accept: text/xml", ...
wordpress调用函数大全
WordPress模板基本文件 style.css 样式表文件 index.php 主页文件 single.php 日志单页文件 page.php 页面文件 archvie.php 分类和日期存档页文件 searchform.php 搜索表单文件 search.php 搜索页面文件...
PHP 使用header函数设置HTTP头的示例解析 表头
//定义编码 header( 'Content-Type:text/html;charset=utf-8 '); //Atom header('Content-type: application/atom+xml'); //CSS header('Content-type: text/css'); //Javascript hea...
wordpress开发模板中经常需要用到的一些函数
wordpress中文官网详细教程 本篇文章主要讲解wordpress开发模板中经常需要用到的一些函数。 一、header常用的函数 <?php bloginfo('name'); ?> : 博客名称(Title) [输出示例:前端开拓者] ...
php实现的分页
<?php /** * 获取分页的HTML内容 * @param integer $page 当前页 * @param integer $pages 总页数 * @param string $url 跳转url地址 最后的页数以 'page.html' 追加在url后面 * * @...
php实现的验证码类
//验证码类//验证码类 class ValidateCode { private $charset = 'abcdefghkmnprstuvwxyzABCDEFGHKMNPRSTUVWXYZ23456789';//随机因子 private $code;//验证码 private $codelen = 4;//验证码长度 privat...