1024programmer PHP How does php replace part of a string – PHP problem

How does php replace part of a string – PHP problem

How to replace part of the string in php: first create a PHP sample file; then use the “str_replace” function to replace the specified string.

Recommendation: “PHP Video Tutorial”

PHP replaces the specified string

Use str_replace to replace the specified character String

$param = & # 39; Banana peel is what rubbish & # 39;;
 $pattOne = [
             & # 39; What rubbish & # 39;,
             & # 39; What rubbish & # 39;,
             & # 39; what kind of garbage & # 39;,
             & # 39; What kind of rubbish & # 39;,
             & # 39; what kind of garbage & # 39;,
             & # 39; what kind of garbage & # 39;,
  ];
  $new_param = str_replace($pattone, '*', $param);
$param = ' banana peel is  What kind of rubbish';
 $patttwo = [ //Put the words with more words in front to match first
             & # 39; Is it & # 39;,
             & # 39; Garbage & # 39;,
             & # 39; Does not belong to & # 39;,
             & # 39; Does it count & # 39;,
             'Which kind',
             'Which category',
             'Which',
             & # 39; Which type & # 39;,
             & # 39; belongs to & # 39;,
             'A',
             'Trash',
             & # 39; what & # 39;,
             & # 39; Count & # 39;,
             & # 39; what & # 39;,
             'is',
         ];
         $new_param = str_replace($patttwo, & # 39; * & # 39;, $param);

Use the regular method, the string function is faster than the regular

$param = 'What kind of garbage is a banana peel?';
 $patt = '/Is it|Does not belong to|Does it count|Garbage|Yes|Say|What|What|Belongs|Which category/';
 $new_param = preg_replace($patt, '*', $param);

The above is the detailed content of how php replaces part of the string, please pay attention to 1024programmer.com for more information article!

This article is from the internet and does not represent1024programmerPosition, please indicate the source when reprinting:https://www.1024programmer.com/how-does-php-replace-part-of-a-string-php-problem/

author: admin

Previous article
Next article

Leave a Reply

Your email address will not be published. Required fields are marked *

Contact Us

Contact us

181-3619-1160

Online consultation: QQ交谈

E-mail: 34331943@QQ.com

Working hours: Monday to Friday, 9:00-17:30, holidays off

Follow wechat
Scan wechat and follow us

Scan wechat and follow us

Follow Weibo
Back to top
首页
微信
电话
搜索