Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Book/php7/internal_types/strings/zend_strings.rst
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ The ``zend_string`` API supports a few additional operations. The most common on
// Case-sensitive comparison with a string literal.
bool result = zend_string_equals_literal(foo, "FOO"); // false
// Case-insensitive comparison with a string literal.
bool result = zend_string_equals_literal_ci(foo, "FOO"); // false
bool result = zend_string_equals_literal_ci(foo, "FOO"); // true

zend_string_release(foo);
zend_string_release(FOO);
Expand Down