Php Wordpress数据库插入()和更新()-使用空值

Php Wordpress数据库插入()和更新()-使用空值,php,mysql,wordpress,null,crud,Php,Mysql,Wordpress,Null,Crud,Wordpress附带处理CRUD操作的wpdb类。我感兴趣的这个类的两个方法是insert()(CRUD中的C)和update()(CRUD中的U) 当我想在mysql数据库列中插入NULL时,会出现一个问题,wpdb类将PHP NULL变量转义为空字符串。如何告诉Wordpress使用实际的MySQLNULL而不是MySQL字符串?如果您希望它兼容,您必须显示列并提前确定是否允许NULL。如果允许,那么如果值为空($v),则在查询中使用val=NULL $foo = null; $metak

Wordpress附带处理CRUD操作的
wpdb
类。我感兴趣的这个类的两个方法是
insert()
(CRUD中的C)和
update()
(CRUD中的U)


当我想在mysql数据库列中插入NULL时,会出现一个问题,
wpdb
类将PHP NULL变量转义为空字符串。如何告诉Wordpress使用实际的MySQL
NULL
而不是MySQL字符串?

如果您希望它兼容,您必须显示列并提前确定是否允许NULL。如果允许,那么如果值为空($v),则在查询中使用val=NULL

$foo = null;
$metakey = "Harriet's Adages";
$metavalue = "WordPress' database interface is like Sunday Morning: Easy.";

if ($foo == null) {
$wpdb->query( $wpdb->prepare( "
    INSERT INTO $wpdb->postmeta
    ( post_id, meta_key, meta_value, field_with_null )
    VALUES ( %d, %s, %s, NULL )", 
        10, $metakey, $metavalue ) );
} else {
$wpdb->query( $wpdb->prepare( "
    INSERT INTO $wpdb->postmeta
    ( post_id, meta_key, meta_value, field_with_null )
    VALUES ( %d, %s, %s, %s)", 
        10, $metakey, $metavalue, $foo ) );
}

这是你问题的解决办法。在“wp content”文件夹中,创建一个名为“db.php”的文件,并将以下代码放入其中:

<?php

// setup a dummy wpdb to prevent the default one from being instanciated
$wpdb = new stdclass();

// include the base wpdb class to inherit from
//include ABSPATH . WPINC . "/wp-db.php";


class wpdbfixed extends wpdb
{
    function insert($table, $data, $format = null) {
        $formats = $format = (array) $format;
        $fields = array_keys($data);
        $formatted_fields = array();
        $real_data = array();
        foreach ( $fields as $field ) {
            if ($data[$field]===null)
            {
                $formatted_fields[] = 'NULL';
                continue;
            }
            if ( !empty($format) )
                $form = ( $form = array_shift($formats) ) ? $form : $format[0];
            elseif ( isset($this->field_types[$field]) )
                $form = $this->field_types[$field];
            else
                $form = '%s';
            $formatted_fields[] = "'".$form."'";
            $real_data[] = $data[$field];
        }
        //$sql = "INSERT INTO <code>$table</code> (<code>&quot; . implode( '</code>,<code>', $fields ) . &quot;</code>) VALUES (" . implode( ",", $formatted_fields ) . ")";
        $sql = "INSERT INTO $table (" . implode( ',', $fields ) . ") VALUES (" . implode( ",", $formatted_fields ) . ")";
        return $this->query( $this->prepare( $sql, $real_data) );
    }

    function update($table, $data, $where, $format = null, $where_format = null)
    {
        if ( !is_array( $where ) )
            return false;

        $formats = $format = (array) $format;
        $bits = $wheres = array();
        $fields = (array) array_keys($data);
        $real_data = array();
        foreach ( $fields as $field ) {
            if ($data[$field]===null)
            {
                $bits[] = "$field = NULL";
                continue;
            }
            if ( !empty($format) )
                $form = ( $form = array_shift($formats) ) ? $form : $format[0];
            elseif ( isset($this->field_types[$field]) )
                $form = $this->field_types[$field];
            else
                $form = '%s';
            $bits[] = "$field = {$form}";

            $real_data[] = $data[$field];
        }

        $where_formats = $where_format = (array) $where_format;
        $fields = (array) array_keys($where);
        foreach ( $fields as $field ) {
            if ( !empty($where_format) )
                $form = ( $form = array_shift($where_formats) ) ? $form : $where_format[0];
            elseif ( isset($this->field_types[$field]) )
                $form = $this->field_types[$field];
            else
                $form = '%s';
            $wheres[] = "$field = {$form}";
        }

        $sql = "UPDATE $table SET " . implode( ', ', $bits ) . ' WHERE ' . implode( ' AND ', $wheres );

        return $this->query( $this->prepare( $sql, array_merge($real_data, array_values($where))) );
    }

}

$wpdb = new wpdbfixed(DB_USER, DB_PASSWORD, DB_NAME, DB_HOST);
?>

通过这种方式,您可以将空值与wpdb一起使用

我尝试编辑此处列出的其他解决方案之一,因为它导致格式数组与数据数组不对齐,但失败了

下面是一个从最新版本的wordpress修改wpdb的解决方案,以便允许使用insert()和update()将空值插入和更新到SQL表中:

将此代码插入始终运行的地方,如functions.php,然后像往常一样使用新的全局$wpdb\u allowed\u null->Insert()和->update()

我更喜欢这种方法,而不是覆盖默认的$wpdb,以便保留其他Wordpress和其他插件所期望的DB行为。

我在论坛上发现了这种方法,它对我来说非常有效

// Add a filter to replace the 'NULL' string with NULL
add_filter( 'query', 'wp_db_null_value' );

global $wpdb;
$wpdb->update(
    'table',
    array( 
        'status' => 'NULL',
    ), 
    array( 'id' => 1 ) 
);

// Remove the filter again:
remove_filter( 'query', 'wp_db_null_value' );
函数wp_db_null_值为:

/**
* Replace the 'NULL' string with NULL
* 
* @param  string $query
* @return string $query
*/

function wp_db_null_value( $query )
{
  return str_ireplace( "'NULL'", "NULL", $query ); 
}
因为在我的例子中,我不能使用$db->prepare()函数…

wpdb
insert()
update()
使用
NULL
值,它在很多年前就被修补过,但在法典中从未提到过

就你而言:

$wpdb->更新(
“表”,
数组(
“状态”=>null,
), 
数组('id'=>1),
无效的
“%d”
);

Ref:

我创建的表是作为自定义插件的一部分的-相关列接受空值。除了更改插件的空/空语义之外,这几乎是唯一的解决方案。非常感谢您分享这一点;许多年后,我使用它向wp-db.php添加了一小段调试代码(检测长度超限并返回实际错误,而不是忽略它)。
/**
* Replace the 'NULL' string with NULL
* 
* @param  string $query
* @return string $query
*/

function wp_db_null_value( $query )
{
  return str_ireplace( "'NULL'", "NULL", $query ); 
}