10月72014
php smtp发送邮件类,带使用示例
<?php
ini_set("display_errors", "On");
error_reporting(E_ALL);
class smtp{
/*邮件用户名*/
public $mailUser = MAIL_USER;
/*邮件密码*/
public $mailPwd = MAIL_PWD;
...阅读全文
评论:0条
10月52014
提取google搜索数据,遭遇屏蔽的解决办法用php_Curl获取Cookie!
<?php
header('Content-Type: text/html; charset=utf-8');
$cookie_file = dirname(__FILE__).'/cookie.txt';
//$cookie_file = tempnam("tmp","cookie");
//先获取cookie...阅读全文
评论:0条
10月52014
php采集文章过滤版权信息
function TT($html,$maxlen) {
if (preg_match("/<title>(.*)<\/title>/isU", $html, $t)) {
if (preg_match_all("/<h([1-3])(?:[^>]*)>(.*)<\/h\\1>...阅读全文
评论:0条
10月52014
PHP获取页面的JS和CSS的总数和文件
<?php
/**
* 获取页面所有的js 和 css 总数 和文件 *
* @param str $url 页面url
* @return array
* css_total css总数
* css_array css数组
* js_total js总数
* js_array js数组
...阅读全文
评论:0条
10月52014
使用Snoopy来获取某网页的所有链接
<?php
/**
* 使用Snoopy来获取某网页的所有链接
* @param str $url 搜索目标url
* @return array $result 链接数组
*/
include "Snoopy.class.php";
function Snoopy_get_urls($url) {
$s...阅读全文
评论:0条
10月52014
php采集百度某关键词搜索结果的网址
<?php
/**
* 采集某百度某关键词搜索结果的网址
* @param str $keyword 关键词
* @return array $result 搜索结果网址数组
*/
function baidu_keyword_fpage($keyword) {
// 组成搜索url
$url = 'ht...阅读全文
评论:0条
9月202014
PHP自动定时循环执行任务
<?php
$Memcache_server = '127.0.0.1';
$Memcache_port = 11211;
$Memcache_date = 86400;
//return $is_send = false; //关闭定时任务
return $is_send = true; //开启定时任务
...阅读全文
评论:0条
9月122014
smarty 条件选择 if else elseif
if,elseif,else
if statements in Smarty have much the same flexibility as php if statements, with a few added features for the template engine. Every if must be paired wi...阅读全文
评论:0条
9月122014
smarty、smarty格式化、smarty整数、smarty float、smarty各种转换方式、smarty日期转换等等
<?
require("setup.php");
define('PAGETITLE','pagtitle');
function insert_top($lid,$sid)
{
echo "insert function";
}
$smarty=new SmartyRebuild();
$smarty->as...阅读全文
评论:0条
9月92014
php的一个验证码程序
<?php
session_start();
$length=4;
$mode=1;
$type='png';
$width=48;
$height=22;
$verifyName='verify';
$chars='ABCDEFGHIJKMNPQRSTUVWXYZabcdefghijkmnpqrstuvwxyz23...阅读全文
评论:0条