Home
last modified time | relevance | path

Searched refs:zmode (Results 1 – 1 of 1) sorted by relevance

/PHP-7.4/ext/standard/
H A Dproc_open.c683 zval *zmode; in PHP_FUNCTION() local
685 if ((zmode = zend_hash_index_find(Z_ARRVAL_P(descitem), 1)) != NULL) { in PHP_FUNCTION()
686 if (!try_convert_to_string(zmode)) { in PHP_FUNCTION()
701 if (strncmp(Z_STRVAL_P(zmode), "w", 1) != 0) { in PHP_FUNCTION()
715 if (Z_STRLEN_P(zmode) >= 2 && Z_STRVAL_P(zmode)[1] == 'b') in PHP_FUNCTION()
720 zval *zfile, *zmode; in PHP_FUNCTION() local
735 if ((zmode = zend_hash_index_find(Z_ARRVAL_P(descitem), 2)) != NULL) { in PHP_FUNCTION()
736 if (!try_convert_to_string(zmode)) { in PHP_FUNCTION()
745 stream = php_stream_open_wrapper(Z_STRVAL_P(zfile), Z_STRVAL_P(zmode), in PHP_FUNCTION()
761 if (strchr(Z_STRVAL_P(zmode), 'a')) { in PHP_FUNCTION()

Completed in 5 milliseconds