We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3f6b8f commit c2c52d9Copy full SHA for c2c52d9
Book/php7/internal_types/strings/zend_strings.rst
@@ -148,7 +148,7 @@ This also brings us to the next topic: refcount management. Rather than using ra
148
return zend_string_copy(str);
149
150
Unlike ``GC_ADDREF()``, the ``zend_string_addref()`` function will handle immutable strings properly. However, the
151
-function that is used most often by far is ``zend_string_copy()``. This function also only increments the refcount,
+function that is used most often by far is ``zend_string_copy()``. This function not only increments the refcount,
152
but also returns the original string. This makes code more readable in practice.
153
154
While a ``zend_string_dup()`` function that performs an actual copy of the string (rather than only a refcount
0 commit comments