douqiao1983 2018-10-06 12:28
浏览 101
已采纳

我如何在php中获得密钥的特定价值

I'm getting all value of this array. I want to get a whom key value in a PHP variable how can i do that.

$fields = array('firstNameInput' => 'Name', 'lastNameInput' => 'Surname', 'countryCodeInput' => 'Country', 'phoneNumberInput' => 'Phone', 'emailInput' => 'Email', 
'companyNameInput' => 'Company', 'whom' => 'Connect to', 'subjectInput' => 'Subject',  'messageInput' => 'message'
);

foreach ($_POST as $key => $value) {
            if (isset($fields[$key])) {
                $emailText .= "$fields[$key]: $value
".$another;
            }
        }
  • 写回答

1条回答 默认 最新

  • duanjiongzhen2523 2018-10-06 18:53
    关注

    I making a code for you, this code is helpful for you.

    $fields = array(
                'firstNameInput' => 'Name', 
                'lastNameInputd' => 'Surname', 
                'countryCodeInput' => 'Country', 
                'phoneNumberInput' => 'Phone', 
                'emailInput' => 'Email',
                'companyNameInput' => 'Company', 
                'whom' => 'Connect to', 
                'subjectInput' => 'Subject',
                'messageInput' => 'message'
                );
     $fields2 = array('whom');
     $fields2=array_flip($fields2);
     $result=array_intersect_key($fields,$fields2);
    
      foreach($result as $value)
      {
         echo $value.'<br>';
      }
    

    I make a new array and pass keys which you want(any key you can pass) in $fields2. now array is Array ( [0] => whom ) array_filp($fields2) is using for convert value to key . array_intersect_key($fields,$fields2) given result is

    Array ( [whom] => Connect to )
    

    finally you have a key result.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 关于github的项目怎么在pycharm上面运行
  • ¥15 内存地址视频流转RTMP
  • ¥100 有偿,谁有移远的EC200S固件和最新的Qflsh工具。
  • ¥15 找一个QT页面+目标识别(行人检测)的开源项目
  • ¥15 有没有整苹果智能分拣线上图像数据
  • ¥20 有没有人会这个东西的
  • ¥15 cfx考虑调整“enforce system memory limit”参数的设置
  • ¥30 航迹分离,航迹增强,误差分析
  • ¥15 Chrome Manifest扩展引用Ajax-hook库拦截请求失败
  • ¥15 用Ros中的Topic通讯方式控制小乌龟的速度,走矩形;编写订阅器代码