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.
我需要使用 Kohana 3 的数据库库在 PHP 中引用一个字符串。在 2.3 中,我所要做的就是$this->db->escape().
$this->db->escape()
我怎么能在 3 中做到这一点?我似乎记得quote()在查看源代码时看到过类似的东西,但是对于我的生活,我可以再次找到它。
quote()
该类Database有一个escape()方法, 请看这里。
Database
escape()