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 手册,四种变量类型mysqli->bind_param为
mysqli->bind_param
插入布尔值的最佳方法是什么?
无论如何,MySQL 并不真正存储布尔值,这是一个技巧。
实际格式是TINYINT,我猜integer是 pdo 的格式。
TINYINT
integer
例如,您必须将真/假转换为 1/0 intval。
intval