Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
0シングルをdbインジェクションのみの文字列として使用したいが、文字列としては使用したく00ない0000。
0
00
0000
$post["content"] = '00'; if (empty($post["content"]) && $post["content"] !== '0') { echo "this field must not be empty!"; }
エラーにはなりません。
私は何をすべきか?
!trim()代わりに使用してください:
!trim()
<?php $post["content"] = '00'; if ($post["content"] !== '0' && !trim($post["content"], '0')) { echo "this field must not be empty!"; } ?>