Table of Contents
回复讨论(解决方案)
Home Backend Development PHP Tutorial $str=preg_replace("/[attach]/is","111",$str); 这一句如何把111替换成可以执行的PHP代码

$str=preg_replace("/[attach]/is","111",$str); 这一句如何把111替换成可以执行的PHP代码

Jun 23, 2016 pm 01:50 PM
str implement

$str=preg_replace("/\[attach\]/is","111",$str);  这一句如何把111替换成可以执行的PHP代码

比如$str=preg_replace("/\[attach\]/is","$str=preg_replace(",$str);  结果出来后成字符了


回复讨论(解决方案)

$message=preg_replace("/\[url\](http:[^\]]*?)\[\/url\]/ies","_cuturl('\\1')",$message);function _cuturl($msg){	$new=cutstr($msg,20);	return $new;}
Copy after login

在正则后面加符号/e,就可以调用函数,在里面就可以执行php的操作

$str=preg_replace("/\[attach\]/is","$str=preg_replace(",$str);

这个是BBCODE的PHP替换。你应该是想实现类似DISCUZ的那种附件BBCODE。
要想回调可以使用 preg_replace_callback。

<?php //author: default7<default7#zbphp.com$str = preg_replace_callback("/\[attach\](\d+)\[\/attach\]/isUe",function($attachId = 0){	//todo 	$row = $db->query("select * from tb where id=$id ")->row();	return '<img  src="/static/imghw/default1.png"  data-src="'.$row['pic'].'"  class="lazy"  .$row['pic'].'" / alt="$str=preg_replace("/[attach]/is","111",$str); 这一句如何把111替换成可以执行的PHP代码" >';},$str);
Copy after login
Copy after login
Copy after login

原理如上,具体代码自己测试一下。



这个是BBCODE的PHP替换。你应该是想实现类似DISCUZ的那种附件BBCODE。
要想回调可以使用 preg_replace_callback。

<?php //author: default7<default7#zbphp.com$str = preg_replace_callback("/\[attach\](\d+)\[\/attach\]/isUe",function($attachId = 0){	//todo 	$row = $db->query("select * from tb where id=$id ")->row();	return '<img  src="/static/imghw/default1.png"  data-src="'.$row['pic'].'"  class="lazy"  .$row['pic'].'" / alt="$str=preg_replace("/[attach]/is","111",$str); 这一句如何把111替换成可以执行的PHP代码" >';},$str);
Copy after login
Copy after login
Copy after login

原理如上,具体代码自己测试一下。



修正:
$str = preg_replace_callback("/\[attach\]\s*(\d+)\s*\[\/attach\]/isUe",function($match){	//todo 	$id = $match[1];	$row = $db->query("select * from tb where id=$id ")->row();	return $row ? '<img  src="/static/imghw/default1.png"  data-src="'.$row['pic'].'"  class="lazy"  .$row['pic'].'" / alt="$str=preg_replace("/[attach]/is","111",$str); 这一句如何把111替换成可以执行的PHP代码" >' : '';},$str);
Copy after login
Copy after login

$str=preg_replace("/\[attach\]/is","$str=preg_replace(",$str)


这个是BBCODE的PHP替换。你应该是想实现类似DISCUZ的那种附件BBCODE。
要想回调可以使用 preg_replace_callback。

<?php //author: default7<default7#zbphp.com$str = preg_replace_callback("/\[attach\](\d+)\[\/attach\]/isUe",function($attachId = 0){	//todo 	$row = $db->query("select * from tb where id=$id ")->row();	return '<img  src="/static/imghw/default1.png"  data-src="'.$row['pic'].'"  class="lazy"  .$row['pic'].'" / alt="$str=preg_replace("/[attach]/is","111",$str); 这一句如何把111替换成可以执行的PHP代码" >';},$str);
Copy after login
Copy after login
Copy after login

原理如上,具体代码自己测试一下。



修正:
$str = preg_replace_callback("/\[attach\]\s*(\d+)\s*\[\/attach\]/isUe",function($match){	//todo 	$id = $match[1];	$row = $db->query("select * from tb where id=$id ")->row();	return $row ? '<img  src="/static/imghw/default1.png"  data-src="'.$row['pic'].'"  class="lazy"  .$row['pic'].'" / alt="$str=preg_replace("/[attach]/is","111",$str); 这一句如何把111替换成可以执行的PHP代码" >' : '';},$str);
Copy after login
Copy after login




出现错误提示:Parse error: syntax error, unexpected T_FUNCTION in
指向$str = preg_replace_callback("/\[attach\]\s*(\d+)\s*\[\/attach\]/isUe",function($match){这一行

你的 php 版本是多少?

php5.2

function get($id) {  //$value = 这里是相关操作的代码  return $value;}$str = preg_replace("/\[(attach)\]/ise", "get('$1')", $str);
Copy after login

也可以
function get($r) {  //$value = 这里是相关操作的代码  return $value;}$str = preg_replace_callback("/\[(attach)\]/is", "get", $str);
Copy after login



dz的手机版不显示图片,所以我想自己写一个 显示人页面。

function get($r) {  $value = SELECT * FROM `bbs_forum_attachment_$row[tableid]` where tid =id  return $value;}$str = preg_replace_callback("/\[(attach)\]/is", "get", $str);
Copy after login


where tid =id 这个ID如何得到

你 print_r($r) 就可看到

你 print_r($r) 就可看到



function get($r) {  $value = "SELECT * FROM `bbs_forum_attachment_9` where tid =$r"  return $value;}$str = preg_replace_callback("/\[(attach)\]/is", "get", $str);
Copy after login


错误提示:Parse error: syntax error, unexpected T_RETURN

第二行的结尾分号少写了。

第二行的结尾分号少写了。



呵呵;我改成
function get($r) {  $value = "SELECT * FROM `bbs_forum_attachment_9` where tid =$r";  return $value;}$str = preg_replace_callback("/\[(attach)\]/is", "get", $str);
Copy after login

可是前天输出
SELECT * FROM `bbs_forum_attachment_9` where tid =Array26588

我想要的是SELECT * FROM `bbs_forum_attachment_9` where tid =26588 不要Array  怎么弄

我改成单引号前台输出 SELECT * FROM `bbs_forum_attachment_9` where tid =$r

是不是这段php语句没有执行,直接转成文本了

26588 从哪里来的? 在get方法里面 print_r($r); 得到什么?

改成$str = preg_replace_callback("/\[attach\](.+?)\[\/attach\]/is", "get", $str);  之后

输出:SELECT * FROM `bbs_forum_attachment_9` where tid =Array

26588 从哪里来的? 在get方法里面 print_r($r); 得到什么?




在get方法里面 print_r($r); 得到 值是  1

26588应该是第一次没有过滤干净

看不懂了,print_r($r); 怎么可能是1呢?

php5.2



忘了写明,我写的那个要 PHP 5.5+ 

php5.2    怎么写呢

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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

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)

Python script to be executed every 5 minutes Python script to be executed every 5 minutes Sep 10, 2023 pm 03:33 PM

Automation and task scheduling play a vital role in streamlining repetitive tasks in software development. Imagine there is a Python script that needs to be executed every 5 minutes, such as getting data from an API, performing data processing, or sending periodic updates. Running scripts manually so frequently can be time-consuming and error-prone. This is where task scheduling comes in. In this blog post, we will explore how to schedule a Python script to execute every 5 minutes, ensuring it runs automatically without manual intervention. We will discuss different methods and libraries that can be used to achieve this goal, allowing you to automate tasks efficiently. An easy way to run a Python script every 5 minutes using the time.sleep() function is to utilize tim

How to use Python for scripting and execution in Linux How to use Python for scripting and execution in Linux Oct 05, 2023 am 11:45 AM

How to use Python to write and execute scripts in Linux In the Linux operating system, we can use Python to write and execute various scripts. Python is a concise and powerful programming language that provides a wealth of libraries and tools to make scripting easier and more efficient. Below we will introduce the basic steps of how to use Python for script writing and execution in Linux, and provide some specific code examples to help you better understand and use it. Install Python

How to write PHP code in the browser and keep the code from being executed? How to write PHP code in the browser and keep the code from being executed? Mar 10, 2024 pm 02:27 PM

How to write PHP code in the browser and keep the code from being executed? With the popularization of the Internet, more and more people have begun to come into contact with web development, and learning PHP has also attracted more and more attention. PHP is a scripting language that runs on the server side and is often used to write dynamic web pages. However, during the exercise phase, we want to be able to write PHP code in the browser and see the results, but we don't want the code to be executed. So, how to write PHP code in the browser and keep it from being executed? This will be described in detail below. first,

How to perform Brown-Forsythe test in Python How to perform Brown-Forsythe test in Python Aug 31, 2023 pm 11:53 PM

The Brown-Forsythe test is a statistical test used to determine whether the variances of two or more groups are equal. Levene's test uses the absolute deviation from the mean, while the Brown-Forsythe test uses the deviation from the median. The null hypothesis used in the test is as follows - H0: The variances of the groups (population) are equal. The alternative hypothesis is that the variances of the groups (population) are not equal. - H1: The variances of the groups (population) are not equal. To perform the test, we calculate the median of each group and its correlation The absolute deviation of the number of digits. We then calculate the F-statistic based on the variance of these deviations. Assume that the calculated F statistic is greater than the critical value in the F distribution table. In this case, we reject the null hypothesis and conclude that the variances of the groups are not equal. In Python, sc

How to perform ANCOVA in Python? How to perform ANCOVA in Python? Sep 01, 2023 pm 05:21 PM

ANCOVA (analysis of covariance) is a useful statistical method because it allows the inclusion of covariates in the analysis, which can help adjust for auxiliary variables and increase the precision of comparisons between groups. These additional factors or covariates can be included in the study by using ANCOVA. To ensure that observed differences between groups are caused by the treatment or intervention in the study and not by extraneous factors, ANCOVA can be used to adjust for the effect of covariates on the group means. This allows for more accurate comparisons between groups and gives more reliable conclusions about the relationships between variables. In this article, we will take a closer look at ANCOVA and implement it in Python. What is ANCOVA? Analysis of covariance (ANCOVA) method compares two or more groups

How to deal with .sh file execution problems in Linux environment? How to deal with .sh file execution problems in Linux environment? Mar 14, 2024 pm 03:36 PM

In the Linux environment, we often encounter situations where we need to execute .sh files. The .sh file is a script file in the Linux system, usually with .sh as the suffix, used to execute a series of commands. But sometimes we may encounter the problem that the .sh file cannot be executed. This may be due to permission issues or encoding format and other reasons. This article will introduce how to deal with .sh file execution issues in a Linux environment and provide specific code examples. 1. Add execution permissions in Linux system if a.

Python built-in type str source code analysis Python built-in type str source code analysis May 09, 2023 pm 02:16 PM

1The basic unit of Unicode computer storage is the byte, which is composed of 8 bits. Since English only consists of 26 letters plus a number of symbols, English characters can be stored directly in bytes. But other languages ​​(such as Chinese, Japanese, Korean, etc.) have to use multiple bytes for encoding due to the large number of characters. With the spread of computer technology, non-Latin character encoding technology continues to develop, but there are still two major limitations: no multi-language support: the encoding scheme of one language cannot be used in another language and there is no unified standard: for example There are many encoding standards in Chinese such as GBK, GB2312, GB18030, etc. Since the encoding methods are not unified, developers need to convert back and forth between different encodings, and many errors will inevitably occur.

What are the similarities and differences between __str__ and __repr__ in Python? What are the similarities and differences between __str__ and __repr__ in Python? Apr 29, 2023 pm 07:58 PM

What are the similarities and differences between __str__ and __repr__? We all know the representation of strings. Python's built-in function repr() can express objects in the form of strings to facilitate our identification. This is the "string representation". repr() obtains the string representation of an object through the special method __repr__. If __repr__ is not implemented, when we print an instance of a vector to the console, the resulting string may be. >>>classExample:pass>>>print(str(Example()))>>>

See all articles