PHP:从数组的未序列化条目中删除白色 space

PHP: Removing white space from an unserialized entry of an array

我正在尝试连接序列化数组中的两个值。我有这个运作良好。问题是本例中的值 Size 之一,包含白色-space。我需要删除这个白色space。我之前使用 preg_match 从 variable/string 中删除白色-space。我在这里遇到的问题是我如何在这种情况下实施 preg_match,如果它是正确的方法。

foreach($contents as $item)
{
    $save = array();                
    $item = unserialize($item);
    **$item['sku'] = $item['sku'] . '' . $item['options']['Size'];** 
    //echo '<pre>';
    //print_r($item['sku']);
    //exit();
    $save['contents']    = serialize($item);
    $save['product_id'] = $item['id'];
    $save['quantity']    = $item['quantity'];
    $save['order_id']    = $id;
    $this->db->insert('order_items', $save);
}

非常感谢。

PHP 具有名为 trim() 的函数,允许修剪字符串。

您可以像这样简单地使用 str_replace:

$item['sku'] .=  ' ' . str_replace(' ', '', $item['options']['Size']);