我正在尝试从 WordPress 中的 RSS 提要中连接一个字段。示例数据行是:
The Scala in London, - David Ford is touring the UK in support of his brand new
album, 'Charge', released in March 2013
它使用以下代码显示:
<?php echo esc_html( $item->get_description() ); ?>
,
我希望它在- 因此显示“伦敦的斯卡拉”之前停止
我已使用此代码代替上述代码:
<?php echo strstr($item->get_description, "-"); ?>
但是它只返回一个空行。我究竟做错了什么?