-1

我想在最后一次出现的字符串和另一个字符串之间获取文本

以下似乎不起作用:

preg_match('/'.preg_quote('{').'(.*?)'.preg_quote($rddaddress).'/is', $apiurlTXinfo, $statTXinfogot);
    preg_match('/' . strrchr($statTXinfogot[1], '"value":"') . '(.*?)","/',$statTXinfogot[1], $TXinfogot);

$statTXinfogot 返回它应该返回的内容,但 $TXinfogot 从 $statTXinfogot[1] 的开头返回到: "," 。我希望它从最后一次出现的开始返回:“value”:”

4

1 回答 1

1

抱歉回复慢。方法如下:假设我们有一个字符串:

      $string = "Bubble the octopus in the  noble bubble in an ocean.";

          echo substr($string, strrpos($string, 'bubble') + strlen('bubble'), 
           (strrpos($string, '.') - strrpos($string, 'bubble') -strlen('bubble'));

输出:在海洋中

于 2014-11-16T01:40:41.200 回答