Home
last modified time | relevance | path

Searched refs:mode (Results 276 – 300 of 728) sorted by relevance

1...<<11121314151617181920>>...30

/PHP-5.4/ext/dba/tests/
H A Ddba011.phpt33 Warning: dba_open(%stest0.dbm,q): Illegal DBA mode in %sdba011.php on line %d
36 Warning: dba_open(%stest0.dbm,nq): Illegal DBA mode in %sdba011.php on line %d
/PHP-5.4/ext/standard/tests/file/
H A Dfile.inc21 Function: bool create_file(string $filename, string $mode = "w");
29 function create_file($filename, $mode = "w") {
30 $file_handle = fopen ($filename, $mode);
195 string $mode = "w",
208 $mode = file open mode as specified in fopen() call. Do not use
210 $permission = An octal number, This should be similar to $mode
238 $mode = "w",
263 // create the files with specified mode and permission
267 $status = create_file($filename, $mode);
286 $file_handle = fopen($filename, $mode);
[all …]
H A Dphp_fd_wrapper_02.phpt2 php://fd wrapper: mode is ignored
H A Dinclude_userstream_002.phpt13 function stream_open($path, $mode, $options, &$opened_path)
16 $this->stream = fopen("test1://".substr($path, 8), $mode);
19 if (strchr($mode, 'a'))
H A Dinclude_userstream_001.phpt12 function stream_open($path, $mode, $options, &$opened_path)
14 if (strchr($mode, 'a'))
H A Dbug27508.phpt8 function stream_open($path, $mode, $options, &$opened_path)
11 $this->fp = fopen($url, $mode);
H A Dfscanf_variation53.phpt30 foreach($modes as $mode) {
47 // opening file in $mode mode
48 $file_handle = fopen($filename, $mode);
H A Dpopen_pclose_error-sunos.phpt12 * Prototype: resource popen ( string command, string mode )
22 var_dump( popen("abc.txt", "rw") ); // Invalid mode Argument
H A Duserstreams_005.phpt6 public $mode;
7 function stream_open($path, $mode, $openedpath) {
/PHP-5.4/ext/standard/tests/file/windows_acls/
H A Dcommon.inc59 function icacls_set($path, $mode, $perm) {
87 if ($mode == PHPT_ACL_GRANT) {
88 $mode = 'grant';
90 $mode = 'deny';
125 $cmd = $icacls . ' ' . $path_escaped . ' /' . $mode . ' ' . $user;
/PHP-5.4/ext/iconv/tests/
H A Diconv_mime_decode_variation1.phpt10 /* Prototype : string iconv_mime_decode(string encoded_string [, int mode, string charset])
23 $mode = ICONV_MIME_DECODE_CONTINUE_ON_ERROR;
99 var_dump( iconv_mime_decode($input, $mode, $charset));
H A Diconv_mime_decode_headers_variation1.phpt10 /* Prototype : array iconv_mime_decode_headers(string headers [, int mode, string charset])
35 $mode = ICONV_MIME_DECODE_CONTINUE_ON_ERROR;
111 var_dump( iconv_mime_decode_headers($input, $mode, $charset));
/PHP-5.4/sapi/roxen/
H A DREADME5 mode, the default, uses a process global PHP lock in the Roxen
8 (Zend Thread Safe mode). Unless --enable-roxen-zts is specified, this
/PHP-5.4/ext/phar/tests/zip/
H A Dbug48791.phpt14mode="label-alignment"><style:list-level-label-alignment text:label-followed-by="listtab" text:lis…
/PHP-5.4/ext/shmop/
H A Dshmop.c52 ZEND_ARG_INFO(0, mode)
159 long key, mode, size; in PHP_FUNCTION() local
166 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "lsll", &key, &flags, &flags_len, &mode, &siz… in PHP_FUNCTION()
179 shmop->shmflg |= mode; in PHP_FUNCTION()
/PHP-5.4/ext/zlib/tests/
H A D007.phpt42 Warning: gzencode(): encoding mode must be either ZLIB_ENCODING_RAW, ZLIB_ENCODING_GZIP or ZLIB_ENC…
47 Warning: gzencode(): encoding mode must be either ZLIB_ENCODING_RAW, ZLIB_ENCODING_GZIP or ZLIB_ENC…
H A Dbug61139.phpt2 Bug #61139 (gzopen leaks when specifying invalid mode)
/PHP-5.4/ext/standard/
H A Dmicrotime.c53 static void _php_gettimeofday(INTERNAL_FUNCTION_PARAMETERS, int mode) in _php_gettimeofday() argument
70 if (mode) { in _php_gettimeofday()
/PHP-5.4/ext/iconv/
H A Diconv.c99 ZEND_ARG_INFO(0, mode)
105 ZEND_ARG_INFO(0, mode)
1453 if ((mode & PHP_ICONV_MIME_DECODE_STRICT)) { in _php_iconv_mime_decode()
1467 if ((mode & PHP_ICONV_MIME_DECODE_STRICT)) { in _php_iconv_mime_decode()
1505 if ((mode & PHP_ICONV_MIME_DECODE_STRICT)) { in _php_iconv_mime_decode()
1603 if ((mode & PHP_ICONV_MIME_DECODE_STRICT)) { in _php_iconv_mime_decode()
1625 if ((mode & PHP_ICONV_MIME_DECODE_STRICT)) { in _php_iconv_mime_decode()
1681 if ((mode & PHP_ICONV_MIME_DECODE_STRICT)) { in _php_iconv_mime_decode()
1845 if ((mode & PHP_ICONV_MIME_DECODE_STRICT)) { in _php_iconv_mime_decode()
2247 long mode = 0; in PHP_FUNCTION() local
[all …]
/PHP-5.4/ext/fileinfo/libmagic/
H A Dtar.h55 char mode[8]; member
/PHP-5.4/ext/calendar/
H A Dcalendar.c113 ZEND_ARG_INFO(0, mode)
118 ZEND_ARG_INFO(0, mode)
677 long julday, mode = CAL_DOW_DAYNO; in PHP_FUNCTION() local
681 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l|l", &julday, &mode) == FAILURE) { in PHP_FUNCTION()
689 switch (mode) { in PHP_FUNCTION()
708 long julday, mode; in PHP_FUNCTION() local
712 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ll", &julday, &mode) == FAILURE) { in PHP_FUNCTION()
716 switch (mode) { in PHP_FUNCTION()
/PHP-5.4/ext/spl/examples/
H A Drecursivecomparedualiterator.inc27 * @param $mode should be LEAVES_ONLY
30 function __construct(RecursiveDualIterator $it, $mode = self::LEAVES_ONLY, $flags = 0)
/PHP-5.4/sapi/fpm/fpm/
H A Dfpm_php.h45 int fpm_php_apply_defines_ex(struct key_value_s *kv, int mode);
/PHP-5.4/sapi/cgi/
H A Dconfig9.m458 …,1,1) != \".\")) { print \$\$3 } }' | sort -u >> php.sym && \$(LIBTOOL) --mode=link \$(CC) -export…
60 …,1,1) != \".\")) { print \$\$3 } }' | sort -u >> php.sym && \$(LIBTOOL) --mode=link \$(CC) -export…
67 …BUILD_CGI="\$(LIBTOOL) --mode=link \$(CC) -export-dynamic \$(CFLAGS_CLEAN) \$(EXTRA_CFLAGS) \$(EXT…
/PHP-5.4/Zend/
H A Dzend_strtod.h29 ZEND_API char * zend_dtoa(double _d, int mode, int ndigits, int *decpt, int *sign, char **rve);

Completed in 89 milliseconds

1...<<11121314151617181920>>...30