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.
PHP のマニュアルによると、 の 4 つの変数型は次のmysqli->bind_paramとおりです。
mysqli->bind_param
ブール値を挿入する最良の方法は何ですか?
とにかく、MySQL は実際にはブール値を保存しません。これはトリックです。
実際の形式はです。これはpdo の場合TINYINTだと思います。integer
TINYINT
integer
intvalたとえば、true/false を 1/0 に変換する必要があります。
intval