We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93565da commit 558516dCopy full SHA for 558516d
Book/php7/internal_types/strings/zend_strings.rst
@@ -204,7 +204,7 @@ The ``zend_string`` API supports a few additional operations. The most common on
204
// Case-sensitive comparison with a string literal.
205
bool result = zend_string_equals_literal(foo, "FOO"); // false
206
// Case-insensitive comparison with a string literal.
207
- bool result = zend_string_equals_literal_ci(foo, "FOO"); // false
+ bool result = zend_string_equals_literal_ci(foo, "FOO"); // true
208
209
zend_string_release(foo);
210
zend_string_release(FOO);
0 commit comments