序列化在 drupal 中对我不起作用
我正在尝试将数据插入数据库,但它在插入时删除了大括号“{}”,我正在使用此代码。
<pre><code>
require_once './includes/bootstrap.inc';
drupal_bootstrap(DRUPAL_BOOTSTRAP_DATABASE);
$aa['alt']="happy alt";
$aa['title']="happy title";
$sldata=serialize($aa);
$sql="Insert into test(pval) values('".$sldata."')";
echo $sql;
db_query($sql);
</pre></code>
我的数据库结构是
<pre><code>
CREATE TABLE IF NOT EXISTS `test` (
`sl` int(11) NOT NULL AUTO_INCREMENT,
`pval` text NOT NULL,
PRIMARY KEY (`sl`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1
</pre></code>
建议我这里出了什么问题..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Drupal 使用
{}
围绕表名称,以便能够对这些名称进行一些操作 - 例如为它们添加前缀(如果您已将其配置为这样做的话)。因此,您不能在查询中使用
{}
——当然,除了周围的表名称。您必须在其中使用占位符,并将相应的值传递给
db_query()
,这将小心逃避什么必须是:这里:
pval
字段是数据库中的字符串,因此我使用了 %s 占位符db_query()
(当然,在 SQL 查询本身之后) 将由 drupal 注入,以替换第一个(并且仅在此处) 占位符。并且,有关更多信息,您可能需要查看 数据库抽象层。
Drupal uses
{}
arround the tables names, to be able to do some manipulations on those names -- like prefix them, if you have configured it to do so.So, you must not use
{}
in your query -- except arround tables names, of course.Instead of brutaly injecting your serialized-string into the SQL query, you must use place-holders in it -- and pass the corresponding values to
db_query()
, which will take care of escaping what has to be :Here :
pval
field is a string in database, I used a %s place-holderdb_query()
(after the SQL query itself, of course) will be injected by drupal, to replace that first (and only, here) placeholder.And, for more informations, you might want to take a look at Database abstraction layer.
您可以使用 base64_encode 来绕过花式问题,而不仅仅是序列化。
http://php.net/manual/en/function.base64-encode.php
然后在数据的检索端
instead of just serialize, you could base64_encode to bypass curlies being a problem.
http://php.net/manual/en/function.base64-encode.php
Then on the retrieving side of the data