gpt4 book ai didi

php - 如果 $_POST null 表单输入 codeigniter

转载 作者:行者123 更新时间:2023-11-30 21:25:48 25 4
gpt4 key购买 nike

如果 POST NULL 和其他 POST 值怎么办?

$data = array(
'harga_jual' => $this->input->post('harga_jual') == '' ? NULL : $this->input->post('harga_jual')
);

谢谢

最佳答案

或者如果您的 php 版本 >= 7.0,您可以使用 this article 中的 Null Coalescing Operator .

<?php
// Fetches the value of $_GET['user'] and returns 'nobody'
// if it does not exist.
$username = $_GET['user'] ?? 'nobody';
// This is equivalent to:
$username = isset($_GET['user']) ? $_GET['user'] : 'nobody';

// Coalescing can be chained: this will return the first
// defined value out of $_GET['user'], $_POST['user'], and
// 'nobody'.
$username = $_GET['user'] ?? $_POST['user'] ?? 'nobody';
?>

关于php - 如果 $_POST null 表单输入 codeigniter,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59132585/

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