当列出现在数据表中时,如何将空字符串转换为Null或“ Nothing”。
例如,在品牌列中,有许多空字符串。因此,我想将其更改为null或“ None”。
$columns = array(
array( 'db' => 'id', 'dt' => 0 ),
array( 'db' => 'name', 'dt' => 1 ),
array( 'db' => 'brand', 'dt' => 2 ),
array(
'db' => 'end-date',
'dt' => 3,
'formatter' => function( $d, $row ) {
return date( 'jS M Y', strtotime($d));
}
),
array(
'db' => 'id',
'dt' => 4,
'formatter' => function( $d, $row ) {
return '<a class="btn btn-danger" href="proDelete.php?id=' . $d . '" onclick="return confirm(\'Are you sure you want to delete this item?\')">Delete</a>';
}
),
);
$where = "end-date< CURDATE()";
// Include SQL query processing class
require( 'ssp.class.php' );
// Output data as json format
echo json_encode(
SSP::complex( $_GET, $dbDetails, $table, $primaryKey, $columns, $where)
);
最佳答案
只需像在其他列中那样使用函数即可:
array(
'db' => 'brand',
'dt' => 2,
'formatter' => function($d, $row) {
return $d !== '' ? $d : 'Nothing';
}
),
关于php - 使用PHP和Mysql将空字符串更改为Null或“None” ssp类,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/59168424/