我有一个看起来像这样的数组:我需要有这种格式的数组,以便稍后在脚本中使用。
//this is only 1 values set there are others that are returned.
Array
(
[DealerName] => Auto Bavaria Midrand MINI
[CustomersCounted] => 16
[Satisfied_Y] => 10
[Satisfied_N] => 6
[InterviewDate] => 2012-01-13
)
$customerSatisfactionRatings
我已经调用了循环遍历的数组。
foreach($customerSatisfactionRatings as $customerSatisfactionRating) {
$content .= $customerSatisfactionRating';
}
这会将正确的值返回到内容变量中。我感兴趣的是从[Satisfied_Y]
密钥创建一个字符串。
我需要的一个例子是$content = '10,5,15,7,8,9,0,3';
我知道如何制作字符串,但不知道如何仅提取[Satisfied_Y]
密钥。这让我很难过。