在正斜杠之间替换字符串

时间:2015-02-21 13:31:15

标签: php

我想替换字符串thike。

我的字符串是

echo "/mytest/";

我想将“mytest”替换为网站

echo "/website/";

我该怎么做/

3 个答案:

答案 0 :(得分:0)

使用str_replace功能:

echo str_replace('mytest', 'website', '/mytest/');

答案 1 :(得分:0)

基本表格

$string='/path/to/mytest/page.ext';
echo preg_replace('@(mytest)@','website',$string);

答案 2 :(得分:0)

使用 str_replace()函数替换字符串中的空格字。

<强>示例:

$str="Can you please replaceMe ?";
echo str_replace("replaceMe","keep me",$str);

输出:你能保留我吗?

<强> 2)例如

$mystr="my string is mytest";
echo str_replace("mytest","mywebsite",$mystr);

输出我的字符串是mywebsite