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工具与代码
10-07-05
转载自httphtml
[code:2idg6ghq]<?
$text = "电子书库";
preg_match_all("/[\x80-\xff]?./",$text,$ar);
foreach($ar[0] as $v)
echo "&#".utf8_unicode(iconv("GB2...
10-07-05
转载自httphtml
[code:zjzf70y7]<?
/**
* 将字符串转换成unicode编码
*
* @param string $input
* @param string $input_charset
* @return string
*/
function str_to_unicode($input, $input_charset = 'gbk'){
$input = iconv($in...
10-07-05
[code:jbzzpkus]<?php
$filename="http://www.edeng.cn/index.html"; //设定开始抓取的网页地址
$content=file_get_contents($filename); //获取html内容
$filename = 'index1.htm'; //取名字...
10-07-05
又看到了一些BAIDU空间上的有关抓取网页内容的文章,汇总一下。
[code:1p67av3k]<?php
/**
* 实现从指定url抓取页面回来,自己修改url_info可以随意抓取别的页面
* 使用方法1: 从浏览器上输入本php文件的路径可以执行
* 使用方...
10-07-05
下面是比较嚣张的方法。
这里使用一个名叫Snoopy的类。
先是在这里看到的:
PHP中获取网页内容的Snoopy包
然后是Snoopy的官网:
class="postlink" href="http://sourceforge.net/projects/snoopy/">http://sourceforge.net/projects/sn...
10-07-05
转载自httphtml
首先,放一些比较小巧的程序,但是功能和实际效果有待完善。
①、使用php获取网页内容
[code:14dqhnco]<?php
header("Content-type: text/html; charset=utf-8");
1、
$xhr = new COM("MSXML2...
10-06-22
转载自http://www.supidea.com/post/mysql-tools.aspx
1、[b:2e1x43cx]Navicat(很不错的MYSQL客户端工具,推荐)[/b:2e1x43cx]
Navicat是一个强大的MySQL数据库管理和开发工具。Navicat导航为专业开发者提供了一套强大的足够尖端的工具,...
05-01-01
转载自httphtm
php 字符串转数组 文章提供了三种php 字符串转数组方法,利用了函数explode str_split split eval等四种函数来举不同的例子说名如何把字符串转换成数组实例。
php教程 字符串转数组
文章提供了三种php 字符串转数组方法...
05-01-01
转载自httphtml
今天项目中用到,去掉字符串中的最后一个字符
原字符串1,2,3,4,5,6,
去掉最后一个字符",",最终结果为1,2,3,4,5,6
代码如下:
复制代码 代码如下:
$str = "1,2,3,4,5,6,";
$newstr = substr($str,0...
05-01-01
转载自httphtml
[code:1x92s06a]function findNum($str=''){
$str=trim($str);
if(empty($str)){return '';}
$reg='/(\d{3}(\.\d+)?)/is';//匹配数字的正则表达式
preg_match_all($reg,$str,$result);
if(is_array($result)&am...