brick/varexporter

val NULL

km3945 opened this issue · 2 comments

$arr=[
    'aa'=>1,
    'bb'=>NULL,
];
echo VarExporter::export($arr);
/*
[
    'aa'=>1
]
*/

bb ?

Hello to you, too.

I'm not getting the same result as you are:

use Brick\VarExporter\VarExporter;

$arr=[
    'aa'=>1,
    'bb'=>NULL,
];

echo VarExporter::export($arr);
[
    'aa' => 1,
    'bb' => null
]

Closing due to lack of feedback.