PHP中的子串替换

时间:2010-11-30 09:11:42

标签: php

我有一个字符串: $ string =“/ physics / mechanics / vectors / P-M-C(1).doc”;

我想这样:

“/ physics / mechanics / vectors / 1-P-M-C(1).doc”;

请注意,在原始字符串中P之前添加“1-”。

PHP可以吗? 如何使用PHP中的函数?

2 个答案:

答案 0 :(得分:0)

请查看explode()join()。 :)

答案 1 :(得分:0)

@fawad:这是一个让你入门的样本 -

$oldstring = "/physics/mechanics/vectors/P-M-C (1).doc";
$parts = explode("/", $oldstring);
$file = $parts[count($parts) - 1];

$newstring = str_replace($file, "1-" . $file, $oldstring);