gpt4 book ai didi

html - 在隐藏字段中表示 bool 值

转载 作者:太空狗 更新时间:2023-10-29 13:17:11 25 4
gpt4 key购买 nike

是否有推荐的方法来表示 HTML 表单隐藏字段中的 bool 值?

通常是存在问题,还是应该使用 1/0 或“true”/“false”字符串?

最佳答案

如果您使用的是 PHP,将会很有用:

test.php?test=false (使用 http_build_query( array( 'test'=>'false' ) )):

var_dump( $_REQUEST['test'] );//字符串(5)“假”

var_dump( (bool)$_REQUEST['test'] );// bool (真)

var_dump( $_REQUEST['test'] == FALSE );// bool (假)

var_dump( $_REQUEST['test'] == "false");// bool (真)

--

test.php?test=0 (使用http_build_query( array( 'test'=>FALSE ) ))::

var_dump( $_REQUEST['test'] );//字符串(1) "0"

var_dump( (bool)$_REQUEST['test'] );// bool (假)

var_dump( $_REQUEST['test'] == FALSE );// bool (真)

关于html - 在隐藏字段中表示 bool 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18947600/

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