search
HomeBackend DevelopmentPHP Tutorial php pre_replace() 高亮显示文字解决思路

php pre_replace() 高亮显示文字

希望在下面的文字当中高亮显示单词in

in the rooming, he got into the room, when he's ordered an inexpensive.

我是这样写的,但是连into,inexpensive, rooming,中的in 都高亮显示了;而且空格都没有了。

$pttn = "$newrow";

$str = preg_replace("/\s($newrow)\s/i",$pttn,$str);

如何写才能只显示in,而不会吧into,inexpensive, rooming,中的in也高亮??


------解决方案--------------------
你这样写并没有错误,会只替换 in,只是要在 in 前面加个空格。
这样写好些
$str = "in the rooming, he got into the room, when he's ordered an inexpensive.";<br />
<br />
$newrow = 'in';<br />
$pttn = "<span style='color:red'>$newrow</span>";<br />
<br />
echo $str = preg_replace("/\b($newrow)\b/i",$pttn, $str);<br />

in the rooming, he got into the room, when he's ordered an inexpensive.

\b 表示单词边界

------解决方案--------------------
如果只是想做一次实现,楼上版主的回答已完全正确了。 
如果想做产品级的开发,就至少需要多考虑一点点特殊情况  例如  \s  
<br />
<br />
$str = "in the rooming, he got into the room, when he's ordered an inexpensive.  \s";<br />
 <br />
$newrow = '\s';  // 这个会换效。<br />
$pttn = "<span style='color:red'>$newrow</span>";<br />
 <br />
echo $str = preg_replace("/\b($newrow)\b/i",$pttn, $str);<br />


我折腾了一下,这样就可以替换 \s 了。
<br />
<br />
$str = "\s in the rooming, he got into \s the room, when he's ordered an inexpensive.  \s";<br />
        $newrow = "\s";<br />
        $newrow2 = addslashes($newrow);<br />
        $pttn = "<span style='color:red'>$newrow</span>";<br />
         //有一个细节,我也没搞明白 ,这里用 \b 失效了,先把结果输出来。<br />
         echo    $str = preg_replace("/(\s+<br><font color='#FF8000'>------解决方案--------------------</font><br>^)($newrow2)(\s+<br><font color='#FF8000'>------解决方案--------------------</font><br>$)/i","\\1".$pttn."\\3", $str);  <br />

------解决方案--------------------
碰到 \s 这种保留字,总得要替换吧。?
addslashes($newrow); 一下就好了。
一个很怪的事,碰到这种保留字 \s 标红的需求   \b 做边界符就失效了,能解释一下么?

引用:
你是在开玩笑?
preg_quote 是做什么的?

\s 是正则表达式的保留字,如果作为匹配串则必须转移!

------解决方案--------------------
引用:
我想问下我一直不理解的问题:
\\1 \\2 \\3和 $1的本质意思是什么?


正则表达式规则串中的“()”每一对表示一个向后引用,即可被后面的规则使用。同时也会出现在结果中
既然可以用,那么就需要知道哪个对哪个。所以规定了按出现的次序从1开始算起
在规则串中 \\1 表示第一对()中匹配到的内容
在结果中就用 \1 表示第一对()中匹配到的内容
至于表示成 $1 是因为 js 中是这样表示的,所以 php 也允许这样写
写 web 应用总是离不开 php、js、html 的,相似的语法成分用相似书写方式,不是黑自然的吗
Statement
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
What data can be stored in a PHP session?What data can be stored in a PHP session?May 02, 2025 am 12:17 AM

PHPsessionscanstorestrings,numbers,arrays,andobjects.1.Strings:textdatalikeusernames.2.Numbers:integersorfloatsforcounters.3.Arrays:listslikeshoppingcarts.4.Objects:complexstructuresthatareserialized.

How do you start a PHP session?How do you start a PHP session?May 02, 2025 am 12:16 AM

TostartaPHPsession,usesession_start()atthescript'sbeginning.1)Placeitbeforeanyoutputtosetthesessioncookie.2)Usesessionsforuserdatalikeloginstatusorshoppingcarts.3)RegeneratesessionIDstopreventfixationattacks.4)Considerusingadatabaseforsessionstoragei

What is session regeneration, and how does it improve security?What is session regeneration, and how does it improve security?May 02, 2025 am 12:15 AM

Session regeneration refers to generating a new session ID and invalidating the old ID when the user performs sensitive operations in case of session fixed attacks. The implementation steps include: 1. Detect sensitive operations, 2. Generate new session ID, 3. Destroy old session ID, 4. Update user-side session information.

What are some performance considerations when using PHP sessions?What are some performance considerations when using PHP sessions?May 02, 2025 am 12:11 AM

PHP sessions have a significant impact on application performance. Optimization methods include: 1. Use a database to store session data to improve response speed; 2. Reduce the use of session data and only store necessary information; 3. Use a non-blocking session processor to improve concurrency capabilities; 4. Adjust the session expiration time to balance user experience and server burden; 5. Use persistent sessions to reduce the number of data read and write times.

How do PHP sessions differ from cookies?How do PHP sessions differ from cookies?May 02, 2025 am 12:03 AM

PHPsessionsareserver-side,whilecookiesareclient-side.1)Sessionsstoredataontheserver,aremoresecure,andhandlelargerdata.2)Cookiesstoredataontheclient,arelesssecure,andlimitedinsize.Usesessionsforsensitivedataandcookiesfornon-sensitive,client-sidedata.

How does PHP identify a user's session?How does PHP identify a user's session?May 01, 2025 am 12:23 AM

PHPidentifiesauser'ssessionusingsessioncookiesandsessionIDs.1)Whensession_start()iscalled,PHPgeneratesauniquesessionIDstoredinacookienamedPHPSESSIDontheuser'sbrowser.2)ThisIDallowsPHPtoretrievesessiondatafromtheserver.

What are some best practices for securing PHP sessions?What are some best practices for securing PHP sessions?May 01, 2025 am 12:22 AM

The security of PHP sessions can be achieved through the following measures: 1. Use session_regenerate_id() to regenerate the session ID when the user logs in or is an important operation. 2. Encrypt the transmission session ID through the HTTPS protocol. 3. Use session_save_path() to specify the secure directory to store session data and set permissions correctly.

Where are PHP session files stored by default?Where are PHP session files stored by default?May 01, 2025 am 12:15 AM

PHPsessionfilesarestoredinthedirectoryspecifiedbysession.save_path,typically/tmponUnix-likesystemsorC:\Windows\TemponWindows.Tocustomizethis:1)Usesession_save_path()tosetacustomdirectory,ensuringit'swritable;2)Verifythecustomdirectoryexistsandiswrita

See all articles

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

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.