Skip to content

Commit c9853a1

Browse files
Bunkermasternikic
authored andcommitted
Removed extra double quote
1 parent 2c27a68 commit c9853a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Book/php7/internal_types/zvals/basic_structure.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ read and to write the respective values. As an example consider the following fu
303303

304304
PHP_FUNCTION(hello_world) {
305305
Z_TYPE_P(return_value) = IS_STRING;
306-
Z_STR_P(return_value) = zend_string_init("hello world!", strlen(""hello world!"), 0);
306+
Z_STR_P(return_value) = zend_string_init("hello world!", strlen("hello world!"), 0);
307307
};
308308

309309
/* ... */

0 commit comments

Comments
 (0)