1

我正在寻找从字符串中获取子字符串:解释这一点的最佳方法是使用以下示例:

$string = 'locations?city=London';
if (strpos($string,'city=') !== false) 
{
   // now here I need something to get London in a string
}
4

1 回答 1

5
parse_str( parse_url( 'locations?city=London', PHP_URL_QUERY ), $params );

print_r( $params );

// outputs: Array ( [city] => London ) 

echo $params['city'];

// outputs London
于 2012-05-05T16:11:15.260 回答