PHP regular implementation of image replacement
How to replace images with regular images in php: first specify the web page and start curl; then execute a curl session; then perform regular matching; finally match all img and implement replacement.
Recommended: "PHP Video Tutorial"
The operating environment of this tutorial: Windows 7 system, PHP version 5.6, This method works for all brands of computers.
php regex extracts images and replaces
<?php // 指定网页 $url = "http://aihuinong.com/goods/"; // 启动curl $ch = curl_init(); // CURLOPT_URL: 这是你想用PHP取回的URL地址。你也可以在用curl_init()函数初始化时设置这个选项。 curl_setopt ($ch, CURLOPT_URL, $url); //(后面参数为1时) 如果成功只将结果返回,不自动输出任何内容。如果失败返回FALSE //(后面参数为0时) 如果成功只返回TRUE,自动输出返回的内容。如果失败返回FALSE curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1); // CURLOPT_CONNECTTIMEOUT 在发起连接前等待的时间,如果设置为0,则不等待。 curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT,10); // curl_exec — 执行一个curl会话 $dxycontent = curl_exec($ch); // 匹配class="yt-goods-nav" - class="pagination"之间的内容 $pattern = '/<div class="yt-goods-nav">(.+?)<div class="pagination" style="float: right">/is'; // 执行正则匹配 preg_match($pattern, $dxycontent, $match); //var_dump($match[0]); //$match[0] 即为<div class="yt-goods-nav">和<div class="pagination">之间的所有源码 // 匹配所有的img preg_match_all('/<img.+src=\"?(.+\.(jpg|gif|bmp|bnp|png))\"?.+>/i', $match[0],$matches);//带引号 $new_arr=array_unique($matches[0]);//去除数组中重复的值 // foreach($new_arr as $key) { //strip_tags($key); //由于这个网站的路径的域名被隐藏 所以直接替换/为域名/ echo preg_replace('#src="/#is', 'src="http://aihuinong.com/', $key); echo "</br>"; }
I have nothing to do today, so I played with regex. Take a look at the pictures on your company website.
The comments in the code are clearly written.
The above is the detailed content of PHP regular implementation of image replacement. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

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

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

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
