gpt4 book ai didi

php - 关于如何简化此代码的任何建议?

转载 作者:行者123 更新时间:2023-12-02 07:09:45 25 4
gpt4 key购买 nike

示例 1:

    $name                =$this->input->post('name', TRUE); 
$address =$this->input->post('address', TRUE);
$website =$this->input->post('website', TRUE);
$phone =$this->input->post('phone', TRUE);
$fax =$this->input->post('fax', TRUE);

它让我编写了很多代码,因为我允许用户输入很多信息....

最佳答案

使用循环:

$fields = array('name', 'address', 'website', 'phone', 'fax');

foreach($fields as $field) {
${$field} = $this->input->post($field, TRUE);
}

关于php - 关于如何简化此代码的任何建议?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7241020/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com