exchange words in echo

时间:2018-11-21 作者:joloshop

使用此代码

$wptitle = str_replace(array(\'Versandkostenfrei\'), \'Kostenloser Versand\', $wptitle);
我在一个循环中交换单词。

现在我正在尝试更改一个名为echo $term->name; 我如何实现这一点?我试过了

<?php 
$wptitle = str_replace(array(\' .echo ($term->name;)\'), \'\', $wptitle); 
?>
但它显然不起作用:-(

1 个回复
最合适的回答,由SO网友:Nathan Johnson 整理而成

PHPecho 输出传递的参数的语言构造。你不会想在str_replace. 要用空字符串替换$term->name,请使用:

$wptitle = str_replace( $term->name, \'\', $wptitle );
然后,如果要打印,请使用:

echo $wptitle;

结束