Table of Contents
回复讨论(解决方案)
Home Backend Development PHP Tutorial 网上的一段代码哪里错了?

网上的一段代码哪里错了?

Jun 23, 2016 pm 02:28 PM

<?php/** * 电话号码识别. * @author by zsc for 2010.03.24 */ class gjPhone{  protected $imgPath;//图片路径      protected $imgSize;//图片大小  protected $hecData;//分离后数组  protected $horData;//横向整理的数据  protected $verData;//纵向整理的数据   function __construct($path){      $this->imgPath = $path;  }/** * 颜色分离转换... * * @param unknown_type $path * @return unknown */  public function getHec()    {           $size = getimagesize($this->imgPath);        $res = imagecreatefrompng($this->imgPath);                for($i=0; $i < $size[1]; ++$i)        {               for($j=0; $j < $size[0]; ++$j)            {                $rgb = imagecolorat($res,$j,$i);                $rgbarray = imagecolorsforindex($res, $rgb);                               if($rgbarray['red'] < 125 || $rgbarray['green']<125                || $rgbarray['blue'] < 125)                {                    $data[$i][$j]=1;                }else{                    $data[$i][$j]=0;                }            }        }        $this->imgSize = $size;        $this->hecData = $data;    }/** * 颜色分离后的数据横向整理... * * @return unknown */public function magHorData(){        $data = $this->hecData;    $size = $this->imgSize;        $z = 0;    for($i=0; $i<$size[1]; ++$i)       {         if(in_array('1',$data[$i])){            $z++;            for($j=0; $j<$size[0]; ++$j)            {                   if($data[$i][$j] == '1'){                                       $newdata[$z][$j] = 1;                }else{                   $newdata[$z][$j] = 0;                 }            }                  }         }    return $this->horData = $newdata;} /** * 整理纵向数据... * * @return unknown */public function magVerData($newdata){    for ($i=0;$i<132;++$i){        for($j=1;$j<13;++$j){            $ndata[$i][$j] = $newdata[$j][$i];        }    }      $sum = count($ndata);    $c = 0;    for ($a=0;$a<$sum;$a++){        $value = $ndata[$a];        if(in_array(1,$value)){                          $ndatas[$c] = $value;              $c++;        }elseif(is_array($ndatas)){          $b = $c-1;          if(in_array(1,$ndatas[$b])){              $ndatas[$c] = $value;              $c++;          }        }             }     return $this->verData = $ndatas; }/** * 显示电话号码... * * @return unknown */public function showPhone($ndatas){    $phone = null;    $d = 0;    foreach ($ndatas as $key => $val){        if(in_array(1,$val)){            foreach ($val as $k => $v){               $ndArr[$d].=$v;            }        }                if(!in_array(1,$val)){            $d++;        }    }   foreach ($ndArr as $key01 =>$val01){        $phone .= $this->initData($val01);   }      return $phone;}/** * 分离显示... * * @param unknown_type $dataArr */function drawWH($dataArr){    if(is_array($dataArr)){        foreach ($dataArr as $key => $val){            foreach ($val as $k => $v){                if($v == 0){                    $c .= "<font color='#FFFFFF'>".$v."</font>";                }else{                  $c .= $v;                }            }            $c .= "<br/>";        }        }    echo $c;}    /**     * 初始数据...     *     * @param unknown_type $numStr     * @return unknown     */    public function initData($numStr){        $result = null;        $data = array(            0=>'000011111000001111111110011000000011110000000001110000000001110000000001110000000001011000000011011100000111000111111100000001110000',            1=>'011000000000011000000000111111111111111111111111',            2=>'001000000011011000000111110000001101110000011001110000011001110000110001111001100001011111100001000110000001',            3=>'001000000010011000000011110000000001110000000001110000110001110000110001011001110011011111011111000110001100',            4=>'000000001100000000111100000001111100000011101100000111001100001100001100011000001100111111111111111111111111000000001100000000000100',            5=>'111111000001111111000001110001000001110001000001110001100001110001100001110000110011110000111111000000001100',            6=>'000011111000001111111110011000110011110001100001110001100001110001100001110001100001010001110011010000111111000000001100',            7=>'110000000000110000000111110000111111110001110000110111000000111100000000111000000000111000000000',            8=>'000100011110011111111111110011100001110001100001110001100001110001100001110011100001011111111111000100011110',            9=>'001111000000011111100001110000110001110000110001110000110001110000110001011000100001011111100111000111111110000001110000',        );        foreach ($data as $key => $val){           similar_text($numStr,$val,$pre);           if($pre>95){//相似度95%以上               $result = $key;               break;           }        }        return $result;    }} $imgPath = "http://bj.ganji.com/tel/5463013757650d6c5e31093e563c51315b6c5c6c5237.png";$gjPhone = new gjPhone($imgPath);//进行颜色分离$gjPhone->getHec();//画出横向数据$horData = $gjPhone->magHorData();echo "===============横向数据==============<br/><br/><br/>";$gjPhone->drawWH($horData);//画出纵向数据$verData = $gjPhone->magVerData($horData);echo "<br/><br/><br/>===============纵向数据==============<br/><br/><br/>";$gjPhone->drawWH($verData); //输出电话$phone = $gjPhone->showPhone($verData);echo "<br/><br/><br/>===============电话==============<br/><br/><br/>".$phone;?>
Copy after login



这是一段完整的代码,为什么最后不显示电话号码呢,横向和纵向都显示了
//输出电话
$phone = $gjPhone->showPhone($verData);
echo "


===============电话==============


".$phone;

这段不显示


回复讨论(解决方案)


这是电话号码吗?

http://www.ganji.com/tel_img/?c=kd1LqjAmJoJICgLz3V2gnIbW.eoBw__PtQyX
用这个也不显示
多几个横杠也不行?

要纯数字????

看起来蛮NB的,图片识别,不懂~~

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Apr 05, 2025 am 12:04 AM

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

Describe the SOLID principles and how they apply to PHP development. Describe the SOLID principles and how they apply to PHP development. Apr 03, 2025 am 12:04 AM

The application of SOLID principle in PHP development includes: 1. Single responsibility principle (SRP): Each class is responsible for only one function. 2. Open and close principle (OCP): Changes are achieved through extension rather than modification. 3. Lisch's Substitution Principle (LSP): Subclasses can replace base classes without affecting program accuracy. 4. Interface isolation principle (ISP): Use fine-grained interfaces to avoid dependencies and unused methods. 5. Dependency inversion principle (DIP): High and low-level modules rely on abstraction and are implemented through dependency injection.

How to automatically set permissions of unixsocket after system restart? How to automatically set permissions of unixsocket after system restart? Mar 31, 2025 pm 11:54 PM

How to automatically set the permissions of unixsocket after the system restarts. Every time the system restarts, we need to execute the following command to modify the permissions of unixsocket: sudo...

How to debug CLI mode in PHPStorm? How to debug CLI mode in PHPStorm? Apr 01, 2025 pm 02:57 PM

How to debug CLI mode in PHPStorm? When developing with PHPStorm, sometimes we need to debug PHP in command line interface (CLI) mode...

Explain the concept of late static binding in PHP. Explain the concept of late static binding in PHP. Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

How to send a POST request containing JSON data using PHP's cURL library? How to send a POST request containing JSON data using PHP's cURL library? Apr 01, 2025 pm 03:12 PM

Sending JSON data using PHP's cURL library In PHP development, it is often necessary to interact with external APIs. One of the common ways is to use cURL library to send POST�...

Explain late static binding in PHP (static::). Explain late static binding in PHP (static::). Apr 03, 2025 am 12:04 AM

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

See all articles