如何替换php中的字符串

how to replace a string in php

我想替换 //’//’ 登录字符串。
例如

1
2
3
$str = ‘if x<y and y>z’;
echo str_replace( ‘<‘, ‘something’, $str ) ."/
"
;

这给出以下结果

1
if xsomethingy and y>z

我的问题是如何将 //’>//’ 替换为文本 //’something//’


1
str_replace( array(‘<‘, ‘>’), ‘something’, $str )

有可能,见手册


签出preg_replace()

文档在这里 http://php.net/manual/en/function.preg-replace.php

例子是
preg_replace(‘/[<>]/’, ‘something’, $str);


preg_replace(/[<>]/g, ‘something’, $str)

你需要学习一些 PHP 呀
http://php.net/manual/en/function.preg-replace.php


原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/268545.html

(0)
上一篇 2022年6月20日
下一篇 2022年6月20日

相关推荐

发表回复

登录后才能评论