我有一个字符串: $ string =“/ physics / mechanics / vectors / P-M-C(1).doc”;
我想这样:
“/ physics / mechanics / vectors / 1-P-M-C(1).doc”;
请注意,在原始字符串中P之前添加“1-”。
PHP可以吗? 如何使用PHP中的函数?
答案 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);