使用php内核的方法 操作数组时 导致 php崩溃。
int add_assoc_string ( zval* $arg, char* $key, char* $str, int $duplicate )*
http://php.undmedlibrary.org/manual/en/zend-api.add-assoc-string.php
原因是:第三个参数, 添加的字符串不能使NULL。
添加之前要先判。 如果是NULL, 应该使用专门加NULL的api:
int add_assoc_null ( zval* $arg, char* $key )
http://php.undmedlibrary.org/manual/en/zend-api.add-assoc-null.php