匹配字符串并获取变量PHP

时间:2013-05-23 09:30:38

标签: php preg-match

我希望能够使用此字符串从数据库“{my-id-1}”中提取某些数据,所以基本上如果在文本'{my-id- *}中找到它'然后获取id(例如if {is-id-1}然后ID为1)然后我可以运行一些具有该ID的代码。

所以我已经知道了,所以我可以从大括号中获取ID,但我不确定如何在文本中替换它。

<?php
$text = "test 1 dfhjsdh sdjkfhksdhfkj skjh {is-id-1} sdfhskdfh sdfsdjfhksd fjksdfhksd {is-id-2}";
preg_match_all('/{is-id-+(.*?)}/',$text, $matches);
print_r ($matches);

$replacewiththis = "this has been replaced, it was id: " . $idhere;
$text = preg_replace('/{is-id-+(.*?)}/', $replacewiththis, $text);

echo $text;
?>

匹配输出的数组:

Array ( 
  [0] => Array ( 
    [0] => {is-id-1} 
    [1] => {is-id-2} 
  ) 
  [1] => Array ( 
    [0] => 1 
    [1] => 2 
  ) 
)

我现在卡住了,不知道如何处理每个大括号。任何人都可以帮我一把吗?

感谢。

1 个答案:

答案 0 :(得分:1)

我不确定我理解你想要什么,但我认为就是这样:

foreach($matches[1] as $match){
  $replacewiththis = "this has been replaced, it was id: $match";
  $text=str_replace('{is-id-'.$match.'}', $replacewiththis, $text);
}
echo $text;