如何删除php

时间:2015-08-03 07:07:51

标签: php str-replace brackets

在那里,我有一个问题:

我想从php中的字符串中删除V形符号(括号):

示例:string= ">Autor</"我想删除<</,但是如何执行此操作?

我试过了:

$result = ">Autor</";
$result = str_replace(arr0ay(">","</"),"",$result);
echo $result;

但它不会删除我想删除的字符,有没有人有想法?

提前致谢

编辑: //列表包含属性,如Autor,Titel

foreach($list as $show){ 
$show = trim($show); 
$text=htmlspecialchars($xml->hits->hit[$j]->info); 
echo $show." = "; 
preg_match ("/$show.*$show/", $text, $result); 
$result = implode($result); 
$result = str_replace(array("$show",">","</"),"",$result); 
$result = str_replace(array(">","</"),"",$result); 
echo $result;
}

1 个答案:

答案 0 :(得分:0)

所以我发现了,怎么做,如果其他人遇到同样的问题,我会知道怎么做:

您需要使用str_replace(“oldstring_to_find”,“newstring_oldstring_get_replaced_with”,“variable”)来执行此操作;

感谢您的帮助