I am working in PHP 7, I have a case in which i want to pass a string of length 0. so how can we generate zend_string variable of length 0.
I tried assigning NULL to zend_string variable but down the line code crashed because it is trying to dereference NULL. so I am guessing we need to allocate memory to zend_string variable and whole value NULL or string length is 0.