Results 1 comments of Zhang Bo

试试参照 Issus #6 改一下php_taint.h里面的INIT_PZVAL_COPY ``` #ifndef INIT_PZVAL_COPY #define INIT_PZVAL_COPY(z,v) \ (z)->value = (v)->value; \ Z_TYPE_P(z) = Z_TYPE_P(v); \ Z_SET_REFCOUNT(z,1); \ Z_UNSET_ISREF_P(z); #endif ```