Home Backend Development PHP Tutorial Capture the 'China IC Network' supplier program_PHP tutorial

Capture the 'China IC Network' supplier program_PHP tutorial

Jul 13, 2016 pm 05:48 PM
http php China supplier crawl program net

/**
* Grab the "China IC Network (http://www.ic37.com)" supplier main program
* author Lee.
* Last modify $Date: 2012-2-9 9:32:21 $
* Note: This program is executed according to the encoding GB2312, because the "China IC Network" website is encoded in GB2312, and the database must also be consistent
*/ 
class ic37 { 
    private $key; // 型号  
    private $pageNum; // 页码  
 
    /**
* Entry program
​​*/ 
    public function go($key) { 
        $this->key = $key; 
        $this->pageNum = $this->getPageNum(); 
        $this->getInfo(); 
    } 
 
    /**
* Get the supplier url link array
* @return ArrayObject
​​*/ 
    private function getInfo() { 
        if ($this->pageNum==1) { # 处理只有一页的情况 
            $arr = $this->shopAddContact($this->shopUrlMatchReArr($this->getContent())); 
            $this->isAddSuccess($arr); 
        } elseif ($this->pageNum>1) { # 多页 
            for ($i=1; $i<=$this->pageNum; $i++) { 
                $arr = $this->shopAddContact($this->shopUrlMatchReArr($this->getContent($i))); 
                $this->isAddSuccess($arr); 
            } 
        }    
    } 
     
    /**
* Print whether the addition was successful
* @param ArrayObject $arr
* @return string
​​*/ 
    private function isAddSuccess($arr) { 
        foreach ($arr as $k=>$v) { 
            if ($this->execAdd($this->getInfoByShopUrl($v))) { 
                echo 'Add Success!!'; 
            } else { 
                echo 'Add Faild!!'; 
            } 
        } 
    } 
 
    /**
* Execute adding to database
* @param ArrayObject $infoArr
* @return Number The number of affected rows
​​*/ 
    private function execAdd($infoArr) { 
        $mysqli = $this->getDb(); 
        if (!emptyempty($infoArr['company'])) { 
            if (!$this->isExists($mysqli, $infoArr)) { 
                $num = $mysqli->query("INSERT INTO ic37(company,person,phone,mobile,qq,msn,fax,email,address,country,region,zip,web,shopUrl) VALUES ('{$infoArr['company']}','{$infoArr['person']}','{$infoArr['phone']}','{$infoArr['mobile']}','{$infoArr['qq']}','{$infoArr['msn']}','{$infoArr['fax']}','{$infoArr['email']}','{$infoArr['address']}','{$infoArr['country']}','{$infoArr['region']}','{$infoArr['zip']}','{$infoArr['web']}','{$infoArr['shopUrl']}')"); 
                                                       return $num;                                                             Return false; # Represents that the data already exists
                                                                                                                                               } else {
             return false;
         } 
}  
       
Private function formatStr($str) {
          $str = trim($str);
          $str = str_replace(' ', '', $str);
           $str = str_replace('==Contact us', '', $str);
          return $str; 
}  

/**
* Connect to database
​​*/
Private function getDb() {
          $mysqli = new mysqli('localhost', 'root', '1715544', 'weiku');
$mysqli->query('SET NAMES GB2312');
         return $mysqli;
}  

/**
* Check if the company already exists
* @param Resource $mysqli
* @param ArrayObject $infoArr
* @return bool
​​*/
Private function isExists($mysqli, $infoArr) {
          $mysqli->query("SELECT company FROM weiku WHERE company = '{$infoArr['company']}'");
If ($mysqli->affected_rows) {
             return true;
         } else {
             return false;
         } 
}  

/**
* Grab information
* @param $url
* @return ArrayObject
​​*/
Private function getInfoByShopUrl($url) {
$re = preg_replace('/(.*)/', '1', str_replace('', '', str_replace('', '', $this->getUrlInfo($url))));
Preg_match_all('/(.*)/Usi', $re, $companyArr);
preg_match_all('/Contact:s*(.*)/Usi', $re, $personArr);
preg_match_all('/Phone:s*(.*)/Usi', $re, $phoneArr);
preg_match_all('/Mobile:s*(.*)/Usi', $re, $mobileArr);
preg_match_all('/QQ:s*(.*)/Usi', $re, $qqArr);
preg_match_all('/MSN:s*(.*)/Usi', $re, $msnArr);
preg_match_all('/Fax:s*(.*)/Usi', $re, $faxArr);
        preg_match_all('/EMail:s*(.*)/Usi', $re, $emailArr); 
        preg_match_all('/司地址[:]*[]*[]*[:]*[]*s*(.*)/Usi', $re, $addressArr); 
        preg_match_all('/国家[:]*[]*[:]*[]*s*(.*)/Usi', $re, $countryArr); 
        preg_match_all('/地区:s*(.*)/Usi', $re, $regionArr); 
        preg_match_all('/邮政编码:s*(.*)/Usi', $re, $zipArr); 
        preg_match_all('/s*网址[1]*:s*(.*)/Usi', $re, $webArr); 
        $infoArr = array( 
            'company'=>$this->formatStr($companyArr[1][0]), 
            'person'=>$this->formatStr($personArr[1][0]), 
            'phone'=>$this->formatStr($phoneArr[1][0]), 
            'mobile'=>$this->formatStr($mobileArr[1][0]), 
            'qq'=>$this->formatStr($qqArr[1][0]), 
            'msn'=>$this->formatStr($msnArr[1][0]), 
            'fax'=>$this->formatStr($faxArr[1][0]), 
            'email'=>$this->formatStr($emailArr[1][0]), 
            'address'=>$this->formatStr($addressArr[1][0]), 
            'country'=>$this->formatStr($countryArr[1][0]), 
            'region'=>$this->formatStr($regionArr[1][0]), 
            'zip'=>$this->formatStr($zipArr[1][0]), 
            'web'=>$this->formatStr($webArr[1][0]), 
            'shopUrl'=>$url 
        ); 
        return $infoArr; 
    } 
 
    /**
* Get the supplier url array based on the page
* @param string $re
* @return ArrayObject
​​*/ 
    private function shopUrlMatchReArr($re) { 
        preg_match_all('/

[]*.*[]*s*

/Usi', $re, $arr); 
        $arr = $this->formatUrlArr(array_unique($arr[1])); 
        return $arr; 
    } 
     
    /**
* * Format array
* @param Array $arr
* @return ArrayObject
​​*/ 
    private function formatUrlArr($arr) { 
        $newArr = array(); 
        foreach ($arr as $key=>$value) { 
            if ($this->isExistsHttp($value)) { 
                $newArr[$key] = $value; 
            } 
        } 
        return $newArr; 
    } 
     
    /**
* Format QQ
* @param string $str
* @return string
​​*/ 
    private function formatQqMsn($str, $e='QQ') { 
        if (emptyempty($str)) return ''; 
        preg_match_all('/alt="'.$e.':(.+)"/Usi', $str, $arr); 
        if (count($arr[1])==1) return $arr[1][0]; 
        $newStr = null; 
        foreach ($arr[1] as $value) { 
            $newStr .= $value . ' '; 
        } 
        return rtrim($newStr, ' '); 
    } 
 
    /**
*Add supplier store link contact.asp
* @param array $arr
* @return string
​​*/ 
    private function shopAddContact($arr) { 
        foreach ($arr as $k=>$v) { 
            if (stristr($v, 'contact.asp')===FALSE)  
                $newArr[$k] = $this->addContact($v); 
            else 
                $newArr[$k] = $v; 
        } 
        return $newArr; 
    } 
     
    /**
* Add link contact.asp
* @param string $str
* @return string
​​*/ 
    private function addContact($str) { 
        return $str . '/contact.asp'; 
    } 
 
    /**
* Remove the A tag from the URL
* @param string $site
* @return string
​​*/ 
    private function stripATags($site) { 
        $site = preg_replace('/(.+)/', '1', $site); 
        return $site; 
    } 
 
    /**
* Check if the url has http
* @param string $url
* @return bool
​​*/ 
    private function isExistsHttp($url) { 
        if (stristr($url, 'http://')) { 
            return true; 
        } else { 
            return false; 
        } 
    } 
     
    /**
* Get page content
* @param Number $page
* @return string
​​*/ 
    private function getContent($page=1) { 
          $re = file_get_contents($this->getUrl($this->key, $page));
         return $re;
}  
       
/**
* Get page number
* @return Number
​​*/
Private function getPageNum() {
Preg_match_all('/A total of .* records are displayed in (.*) pages/Usi', $this->getContent(), $arr);
         return $arr[1][0];
}  

/**
* Get URL link
* @param string $str
* @param int $page page number
* @return string
​​*/
Private function getUrl($str, $page=1) {
Return "http://www.ic37.com/sell/search.asp?keyword={$str}&x=86&y=22&page={$page}";
}  

/**
* Get page content
* @param string $url
* @return string
​​*/
Private function getUrlInfo($url) {
          $re = file_get_contents($url);
         return $re;
}  
}

/*
Program running idea: According to the IC search function of "China IC Network", enter the model number to search, and then grab the supplier information

Database structure
CREATE TABLE `ic37` (
`id` mediumint(8) unsigned NOT NULL auto_increment,
`company` varchar(500) default NULL,
`person` varchar(500) default NULL,
`phone` varchar(500) default NULL,
`mobile` varchar(500) default NULL,
`qq` varchar(500) default NULL,
`msn` varchar(500) default NULL,
`fax` varchar(500) default NULL,
`email` varchar(500) default NULL,
`address` varchar(1000) default NULL,
`country` varchar(500) default NULL,
`region` varchar(500) default NULL,
`zip` varchar(500) default NULL,
`web` varchar(500) default NULL,
`shopUrl` varchar(500) default NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=gb2312
*/

$k = new ic37();
$arr = array_unique(array('MAX3232', 'AML8613', 'MT6225A', 'OM8373PS/N3/A', 'PT7313', 'MAX8212ESA', 'TL431', 'S3C2440', 'TMS320F2812PGFA', 'PCM1704' 'AN6717', 'CA3162E', 'CA3161E', 'LM393N', 'DS18B20', 'SHT10', 'AML8613', 'AN6717', 'LM393N', 'CA3161E', 'CA3162E', 'PCM1704', ' STK392-040', 'K1667', 'MAX232', 'STM32F103', 'LM358', 'NE555', '78L05', 'LM324', 'TL431', 'PC817', '7805', 'LM339', ' LM317', '46A-3GRI', 'MODEL', '78L05', '93C46-3GRI', '8050', 'DS18B20', 'TDA2030', 'LM393', '74HC595', '6N137', 'SN75176BDR' ));
foreach ($arr as $v) {
$k->go($v);
}
?>
/**
* Grab the "China IC Network (http://www.ic37.com)" supplier main program
* author Lee.
* Last modify $Date: 2012-2-9 9:32:21 $
* Note: This program is executed according to the encoding GB2312, because the "China IC Network" website is encoded in GB2312, and the database must also be consistent
*/
class ic37 {
private $key; //Model
private $pageNum; // Page number

/**
* Entry program
​*/
public function go($key) {
$this->key = $key;
$this->pageNum = $this->getPageNum();
$this->getInfo();
}

 /**
* Get supplier url link array
* @return ArrayObject
​*/
 private function getInfo() {
  if ($this->pageNum==1) { # 处理只有一页的情况
   $arr = $this->shopAddContact($this->shopUrlMatchReArr($this->getContent()));
   $this->isAddSuccess($arr);
  } elseif ($this->pageNum>1) { # 多页
   for ($i=1; $i<=$this->pageNum; $i++) {
    $arr = $this->shopAddContact($this->shopUrlMatchReArr($this->getContent($i)));
    $this->isAddSuccess($arr);
   }
  } 
 }
 
 /**
* Print whether the addition was successful
* @param ArrayObject $arr
* @return string
​*/
 private function isAddSuccess($arr) {
  foreach ($arr as $k=>$v) {
   if ($this->execAdd($this->getInfoByShopUrl($v))) {
    echo 'Add Success!!';
   } else {
    echo 'Add Faild!!';
   }
  }
 }

 /**
* Execute adding to database
* @param ArrayObject $infoArr
* @return Number Number of affected rows
​*/
 private function execAdd($infoArr) {
  $mysqli = $this->getDb();
  if (!empty($infoArr['company'])) {
   if (!$this->isExists($mysqli, $infoArr)) {
    $num = $mysqli->query("INSERT INTO ic37(company,person,phone,mobile,qq,msn,fax,email,address,country,region,zip,web,shopUrl) VALUES ('{$infoArr['company']}','{$infoArr['person']}','{$infoArr['phone']}','{$infoArr['mobile']}','{$infoArr['qq']}','{$infoArr['msn']}','{$infoArr['fax']}','{$infoArr['email']}','{$infoArr['address']}','{$infoArr['country']}','{$infoArr['region']}','{$infoArr['zip']}','{$infoArr['web']}','{$infoArr['shopUrl']}')");
    return $num;
   } else {
    return false; # 表示数据已经存在
   }
  } else {
   return false;
  }
 }
 
 private function formatStr($str) {
  $str = trim($str);
  $str = str_replace(' ', '', $str);
  $str = str_replace('==联系我们', '', $str);
  return $str;
 }

 /**
* Connect to database
​*/
 private function getDb() {
  $mysqli = new mysqli('localhost', 'root', '1715544', 'weiku');
  $mysqli->query('SET NAMES GB2312');
  return $mysqli;
 }

 /**
* Check if the company already exists
* @param Resource $mysqli
* @param ArrayObject $infoArr
* @return bool
​*/
 private function isExists($mysqli, $infoArr) {
  $mysqli->query("SELECT company FROM weiku WHERE company = '{$infoArr['company']}'");
  if ($mysqli->affected_rows) {
   return true;
  } else {
   return false;
  }
 }

 /**
* Grab information
* @param $url
* @return ArrayObject
​*/
 private function getInfoByShopUrl($url) {
  $re = preg_replace('/(.*)/', '1', str_replace('
', '', str_replace('', '', $this->getUrlInfo($url))));
  preg_match_all('/(.*)/Usi', $re, $companyArr);
  preg_match_all('/联系人:s*(.*)/Usi', $re, $personArr);
  preg_match_all('/电话:s*(.*)/Usi', $re, $phoneArr);
  preg_match_all('/手机:s*(.*)/Usi', $re, $mobileArr);
  preg_match_all('/QQ:s*(.*)/Usi', $re, $qqArr);
  preg_match_all('/MSN:s*(.*)/Usi', $re, $msnArr);
  preg_match_all('/传真:s*(.*)/Usi', $re, $faxArr);
  preg_match_all('/EMail:s*(.*)/Usi', $re, $emailArr);
  preg_match_all('/司地址[:]*[]*[]*[:]*[]*s*(.*)/Usi', $re, $addressArr);
  preg_match_all('/国家[:]*[]*[:]*[]*s*(.*)/Usi', $re, $countryArr);
  preg_match_all('/地区:s*(.*)/Usi', $re, $regionArr);
  preg_match_all('/邮政编码:s*(.*)/Usi', $re, $zipArr);
  preg_match_all('/s*网址[1]*:s*(.*)/Usi', $re, $webArr);
  $infoArr = array(
   'company'=>$this->formatStr($companyArr[1][0]),
   'person'=>$this->formatStr($personArr[1][0]),
   'phone'=>$this->formatStr($phoneArr[1][0]),
   'mobile'=>$this->formatStr($mobileArr[1][0]),
   'qq'=>$this->formatStr($qqArr[1][0]),
   'msn'=>$this->formatStr($msnArr[1][0]),
   'fax'=>$this->formatStr($faxArr[1][0]),
   'email'=>$this->formatStr($emailArr[1][0]),
   'address'=>$this->formatStr($addressArr[1][0]),
   'country'=>$this->formatStr($countryArr[1][0]),
   'region'=>$this->formatStr($regionArr[1][0]),
   'zip'=>$this->formatStr($zipArr[1][0]),
   'web'=>$this->formatStr($webArr[1][0]),
   'shopUrl'=>$url
  );
  return $infoArr;
 }

 /**
* Get the supplier url array based on the page
* @param string $re
* @return ArrayObject
​*/
 private function shopUrlMatchReArr($re) {
  preg_match_all('/

[]*.*[]*s*

/Usi', $re, $arr);
  $arr = $this->formatUrlArr(array_unique($arr[1]));
  return $arr;
 }
 
 /**
* Format array
* @param Array $arr
* @return ArrayObject
​*/
 private function formatUrlArr($arr) {
  $newArr = array();
  foreach ($arr as $key=>$value) {
   if ($this->isExistsHttp($value)) {
    $newArr[$key] = $value;
   }
  }
  return $newArr;
 }
 
 /**
* Format QQ
* @param string $str
* @return string
​*/
 private function formatQqMsn($str, $e='QQ') {
  if (empty($str)) return '';
  preg_match_all('/alt="'.$e.':(.+)"/Usi', $str, $arr);
  if (count($arr[1])==1) return $arr[1][0];
  $newStr = null;
  foreach ($arr[1] as $value) {
   $newStr .= $value . ' ';
  }
  return rtrim($newStr, ' ');
 }

 /**
* Add supplier store link contact.asp
* @param array $arr
* @return string
​*/
 private function shopAddContact($arr) {
  foreach ($arr as $k=>$v) {
   if (stristr($v, 'contact.asp')===FALSE)
    $newArr[$k] = $this->addContact($v);
   else
    $newArr[$k] = $v;
  }
  return $newArr;
 }
 
 /**
* Add link contact.asp
* @param string $str
* @return string
​*/
 private function addContact($str) {
  return $str . '/contact.asp';
 }

 /**
* Remove the A tag from the URL
* @param string $site
* @return string
​*/
 private function stripATags($site) {
  $site = preg_replace('/(.+)/', '1', $site);
  return $site;
 }

 /**
* Check if the url has http
* @param string $url
* @return bool
​*/
 private function isExistsHttp($url) {
  if (stristr($url, 'http://')) {
   return true;
  } else {
   return false;
  }
 }
 
 /**
* Get page content
* @param Number $page
* @return string
​*/
 private function getContent($page=1) {
  $re = file_get_contents($this->getUrl($this->key, $page));
  return $re;
 }
 
 /**
* Get page number
* @return Number
​*/
 private function getPageNum() {
  preg_match_all('/共.*条记录分(.*)页显示/Usi', $this->getContent(), $arr);
  return $arr[1][0];
 }

 /**
* Get URL link
* @param string $str
* @param int $page page number
* @return string
​*/
 private function getUrl($str, $page=1) {
  return "http://www.ic37.com/sell/search.asp?keyword={$str}&x=86&y=22&page={$page}";
 }

 /**
* Get page content
* @param string $url
* @return string
​*/
 private function getUrlInfo($url) {
  $re = file_get_contents($url);
  return $re;
 }
}

/*
程序运行思路:根据“中国 IC 网”的IC搜索功能,输入型号进行搜索,然后抓取供应商信息

数据库结构
CREATE TABLE `ic37` (
 `id` mediumint(8) unsigned NOT NULL auto_increment,
 `company` varchar(500) default NULL,
 `person` varchar(500) default NULL,
 `phone` varchar(500) default NULL,
 `mobile` varchar(500) default NULL,
 `qq` varchar(500) default NULL,
 `msn` varchar(500) default NULL,
 `fax` varchar(500) default NULL,
 `email` varchar(500) default NULL,
 `address` varchar(1000) default NULL,
 `country` varchar(500) default NULL,
 `region` varchar(500) default NULL,
 `zip` varchar(500) default NULL,
 `web` varchar(500) default NULL,
 `shopUrl` varchar(500) default NULL,
 PRIMARY KEY  (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=gb2312
*/

$k = new ic37();
$arr = array_unique(array('MAX3232', 'AML8613', 'MT6225A', 'OM8373PS/N3/A', 'PT7313', 'MAX8212ESA', 'TL431', 'S3C2440', 'TMS320F2812PGFA', 'PCM1704', 'AN6717', 'CA3162E', 'CA3161E', 'LM393N', 'DS18B20', 'SHT10', 'AML8613', 'AN6717', 'LM393N', 'CA3161E', 'CA3162E', 'PCM1704', 'STK392-040', 'K1667', 'MAX232', 'STM32F103', 'LM358', 'NE555', '78L05', 'LM324', 'TL431', 'PC817', '7805', 'LM339', 'LM317', '46A-3GRI', 'MODEL', '78L05', '93C46-3GRI', '8050', 'DS18B20', 'TDA2030', 'LM393', '74HC595', '6N137', 'SN75176BDR'));
foreach ($arr as $v) {
 $k->go($v);
}
?>


摘自 Lee.的专栏

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/478403.htmlTechArticle?php /** * 抓取中国 IC 网(http://www.ic37.com)供应商主程序 * author Lee. * Last modify $Date: 2012-2-9 9:32:21 $ * 注:本程序按照编码 GB2312 执行,因为中...
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)

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

7 PHP Functions I Regret I Didn't Know Before 7 PHP Functions I Regret I Didn't Know Before Nov 13, 2024 am 09:42 AM

If you are an experienced PHP developer, you might have the feeling that you’ve been there and done that already.You have developed a significant number of applications, debugged millions of lines of code, and tweaked a bunch of scripts to achieve op

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,

How do you parse and process HTML/XML in PHP? How do you parse and process HTML/XML in PHP? Feb 07, 2025 am 11:57 AM

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

PHP Program to Count Vowels in a String PHP Program to Count Vowels in a String Feb 07, 2025 pm 12:12 PM

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

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.

What are PHP magic methods (__construct, __destruct, __call, __get, __set, etc.) and provide use cases? What are PHP magic methods (__construct, __destruct, __call, __get, __set, etc.) and provide use cases? Apr 03, 2025 am 12:03 AM

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.

See all articles