Home
last modified time | relevance | path

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

/PHP-7.2/ext/standard/
H A Dproc_open.c558 zval *zmode; in PHP_FUNCTION() local
560 if ((zmode = zend_hash_index_find(Z_ARRVAL_P(descitem), 1)) != NULL) { in PHP_FUNCTION()
561 convert_to_string_ex(zmode); in PHP_FUNCTION()
574 if (strncmp(Z_STRVAL_P(zmode), "w", 1) != 0) { in PHP_FUNCTION()
588 if (Z_STRLEN_P(zmode) >= 2 && Z_STRVAL_P(zmode)[1] == 'b') in PHP_FUNCTION()
593 zval *zfile, *zmode; in PHP_FUNCTION() local
606 if ((zmode = zend_hash_index_find(Z_ARRVAL_P(descitem), 2)) != NULL) { in PHP_FUNCTION()
607 convert_to_string_ex(zmode); in PHP_FUNCTION()
614 stream = php_stream_open_wrapper(Z_STRVAL_P(zfile), Z_STRVAL_P(zmode), in PHP_FUNCTION()
630 if (strchr(Z_STRVAL_P(zmode), 'a')) { in PHP_FUNCTION()

Completed in 9 milliseconds