10月262014
PHP中获取文件扩展名的N种方法
PHP中获取文件扩展名的N种方法
从网上收罗的,基本上就以下这几种方式:
第1种方法:
function get_extension($file)
{
substr(strrchr($file, '.'), 1);
}
第2种方法:
function get_extension($file)
{
retu...阅读全文
评论:0条
10月232014
smarty获得当前URL
Smarty中获得当前页面路径的方法
http://{$smarty.server.SERVER_NAME}/{$smarty.server.REQUEST_URI}
注释:{$smarty.server.SERVER_NAME} 表示:服务器名称
{$s...阅读全文
评论:0条
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月192014
强制将IE,Chrome设置为指定兼容模式来解析
一.指定文件兼容性模式
要为你的网页指定文件模式,需要在你的网页中使用meta元素放入X-UA-Compatible http-equiv 标头。
1. 强制IE8使用IE8模式来解析,而且那个兼容性视图 按钮也被去掉了
<meta http-equiv="X-UA-Compatible" ...阅读全文
评论:0条