易截截图软件、单文件、免安装、纯绿色、仅160KB

php代理访问

最近想写个软件玩玩,抓取网页上的内容
抓取网页内容的我放在一个文件中写成类了
以下是代码
<?php
class myhttp
{
    var $_host;
    var $_url;
    var $_port;
    var $_errno;
    var $_errstr;
    var $_header;
    var $_body;
   
    function __construct($url)
    {
        if($url) setUrl($url);
    }
   
    function setUrl($url)
    {
        if(preg_match("{http://([^/]+)[:(\\d+)]?(.+)}",$url,$match))
        {
            $this->_host = $match[1];
            if(count($match) == 3)
            {
                $this->_port = 80;
                $this->_url = $match[2];
            }
            else
            {
                $this->_port = $match[2];
                $this->_url = $match[3];
            }
            $this->$_header = array();
            $this->$_body = "";
        }
        else
        {
          &nbs


相关文档:

免费开源PHP商城系统介绍 南三方

中国知名电子商务供应商(排名不分先后)
SHOPEX
网址:www.shopex.cn
简介:国内使用人数最多的免费独立B2C网店管理软件。
特色:品牌老、用户多,模板众多,模板费用低廉。主要面向个人用户,产品的附属配件多,功能全面.免费网店系统的老大哥。但面对企业用户时,基础软件不适合,定制开发要求又太高。
第二位、ECSH ......

PHP生成word文档

<?PHP
$word = new COM("word.application") or die("Can't start Word!");
// print the version of Word that's now in use
echo "Loading Word, v. {$word->Version}";
// set the visibility of the application to 0 (false)
// to open the application in the forefront, use 1 (true)
$word->Visibl ......

php实现多线程


转:http://blog.iyi.cn/start/
问题:
有没有办法在php中实现多线程呢?
假设你正在写一个基于多台服务器的php应用,理想的情况时同时向多台服务器发送请求,而不是一台接一台。
可以实现吗?
回答:
当有人想要实现并发功能时,他们通常会想到用fork或者spawn threads,但是当他们发现php不支持多线程的时候,大 ......

php出现网页乱码问题

用PHPmyAdmin操作MySQL数据库汉字显示正常 ,但用PHP网页显示MySQL数据时所有汉字都变成了?号。
症状:用PHPmyAdmin输入汉字正常,但当PHP网页显示MySQL数据时汉字就变成了?号,并且有多少个汉字就有多少个?号。很多学员都遇到了此问题,尤其是在安装了最新版的Appserv后。为此许多学员放弃了PHP,改学ASP了。
原因:没 ......
© 2009 ej38.com All Rights Reserved. 关于E健网联系我们 | 站点地图 | 赣ICP备09004571号