简体   繁体   中英

PHP regex to add #ErrorLog with special character

i have to add "#ErrorLog" to this line

$directivesRegex = '#^ *(ServerAlias|ServerAdmin|DocumentRoot|ServerName|CustomLog) +(.+)$#im';

how can i add it to the code ?

Salmen,

You are using # as a delimiter, so you either need to escape the # in the regex, or to change the delimiter. Just changing the delimiter in your code with a tilde (~):

$directivesRegex = '~^ *(ServerAlias|ServerAdmin|DocumentRoot|ServerName|#ErrorLog|CustomLog) +(.+)$~im';

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM