PHP

时间:2017-06-05 09:25:34

标签: php excel concat substr

我在php代码中遇到了麻烦,问题是我想从变量Cell old中显示变量Cell new

$ Cell old = ARI_0089_sect2

$ Cell new = ARI_0089_h2(将'sect'替换为'h')

我发现的所有示例都连接了两个不同的变量,如名字和姓氏

我没有找到如何连接相同变量的不同位置,有可能在microsoft excel但我没有找到如何用PHP代码解决它。

2 个答案:

答案 0 :(得分:1)

$Cell new = str_replace('sect','h',$Cell old);

echo $Cell new;

答案 1 :(得分:0)

尝试PHP函数str_replace

$Cell_old = "ARI_0089_sect2";
$new = str_replace('sect', 'h', $Cell_old);
echo $new;