我有一个“公共资料”页面,其中显示了有关用户的信息,但我有一个特定的页面((Tidl海报)会自动在其周围添加一个段落)。
我已经尝试过查找代码,并去除html标签,但这对您没有帮助。
$rootScope.$on('$stateChangeSuccess',
function (event, toState, toParams, fromState, fromParams) {
var par = Object.keys(toParams);
if (par.length > 0) {
par.forEach(function (item) {
if (toParams[item] == "-1") {
toParams[item] = null;
}
});
$stateParams = toParams;
}
});
我希望它在没有<?php if ( ! empty( $member['tidligere_poster'] ) ) : ?>
<?php
$text = strip_tags($member['tidligere_poster']);
?>
<div class="form-group">
<div class="input-group">
<span class="input-group-addon"><i class="fa fa-fw fa-trophy"></i> Tidl. Poster</span>
<input type="textarea" value="<?php echo $text; ?>" class="form-control" height="10px" disabled>
</div>
</div>
<?php endif; ?>
标签的情况下显示,我该如何实现?
答案 0 :(得分:0)
尝试在此代码上使用带有strip_tags的html_entity_decode。
<?php if ( ! empty( $member['tidligere_poster'] ) ) : ?>
<?php $text = strip_tags(html_entity_decode($member['tidligere_poster'])); ?>
<div class="form-group">
<div class="input-group">
<span class="input-group-addon"><i class="fa fa-fw fa-trophy"></i> Tidl. Poster</span>
<input type="textarea" value="<?php echo $text; ?>" class="form-control" height="10px" disabled>
</div>
</div>
<?php endif; ?>