unread
Hello internals,
I have been browsing php-src and notice smart_string, and smart_str, each with their header files. Why is there two seemingly identical structures with the same name?
--
Ryan McCullagh
ryanmccullagh.com
unread
I have been browsing php-src and notice smart_string, and smart_str, each with their header files. Why is there two seemingly identical structures with the same name?
smart_string targets a raw char* buffer, smart_str targets a
refcountable zend_string*.
You'll almost always want the latter, except when you don't.
-Sara