strip_tags和trim不能一起工作

时间:2017-07-30 11:58:23

标签: php html trim strip-tags

我需要一些帮助。我想提取html标签和空格,但这段代码不起作用。我的错在哪里

使用中的代码;

$ozellikpar = $ozellikler1[0]; 
echo strip_tags (trim($ozellikpar[13]));

输出;

<option value="">      Deneme</option>

但必须是;

<option value="">Deneme</option>

谢谢。

1 个答案:

答案 0 :(得分:0)

您必须使用

$result = array_values(array_reduce($arrays, function ($result, $entry) {
  if (isset($result[$entry['id']])) {
    $result[$entry['id']]['quantity'] += $entry['quantity'];
  }
  else {
    $result[$entry['id']] = $entry;
  }
  return $result;
}, []));