繁体   English   中英

如何搜索值以获取键并使用该键获取另一个数组中的另一个键?

[英]How can I search for value to get key and use that key to get another key in a different array?

我有一个带有许多键和值的大型关联数组,看起来像这样。 我想搜索一个特定的值“经常”,并检索具有该值的所有键。

$data = array(
'token' => 'token',
'content' => 'record',
'format' => 'json',
'type' => 'flat',
'records' => array($record),
'fields' => array(),
'returnFormat' => 'json'
);
 $ch = curl_init();
 curl_setopt($ch, CURLOPT_URL, 'url');
 curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); 
 curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
 curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'POST');
 curl_setopt($ch, CURLOPT_FRESH_CONNECT, 1);
 curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data, '', '&'));
$output = curl_exec($ch);
$row = json_decode($output, true);

foreach ($row[0] as $key => $value) {

              $first_array=array($variable_name=>$value);

              $often_variable=array_search("Often <br> (3)", $first_array);                 
          }

然后,我要使用第二个具有该键作为值的数组,并将该键的键输出到表中。

  $objPHPExcel = PHPExcel_IOFactory::load("123.csv");

 foreach ($objPHPExcel->getWorksheetIterator() as $worksheet) {
$worksheetTitle     = $worksheet->getTitle();
$highestRow         = $worksheet->getHighestRow(); // e.g. 10
$highestColumn      = $worksheet->getHighestColumn(); // e.g 'F'
$highestColumnIndex = PHPExcel_Cell::columnIndexFromString($highestColumn);
$nrColumns = ord($highestColumn) - 64;

for ($row2 = 2; $row2 <= $highestRow; ++ $row2) {
    $variable_name = $worksheet->getCellByColumnAndRow(0, $row2)->getValue();
    $field_label = $worksheet->getCellByColumnAndRow(4, $row2)->getValue();

    $second_array=array($field_label=>$variable_name)
}

我使用过array_search(),但不确定这是否是此用例的最佳选择。

  foreach ($first_array as $var_name => $val){
    if ($value == "Often"){
      foreach ($second_array as $field_label => $variable_name){
         if ($variable_name == $var_name){
           echo "field_label: $field_label\n";
         };
      }
    }
  }

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM