我对PHP很陌生,所以我在问这个问题之前尝试搜索,但找不到正确的答案。可能是因为我不知道正确的词汇。
无论如何,这是我的问题:
我正在尝试从句子中删除一个单词。句子是可以在网站上填写的字段。
PHP中的语句是:
<?php the_field('years'); ?>
这行得通,我得到了正确的句子。所以我试图用以下内容替换或隐藏一个词:
<?php
$sentence = the_field('years');
$test = str_replace('the', ' ', $sentence);
echo "$test";
?>
但这只是呼应 the$sentence
并没有别的。
这个怎么做?像"the_field('years')
;这样的“对象”的正确词是什么?
谢谢!
编辑:
该字段实际上是 wordpress 的高级自定义字段。获取变量:
<?php
$variable = get_field('field_name');
?>
所以我尝试了:
<?php
$sentence = get_field('years');
$test = str_replace('the', ' ', $sentence);
echo "$test";
?>
但这会呼应:“数组”