Home
last modified time | relevance | path

Searched refs:mode (Results 226 – 250 of 759) sorted by relevance

12345678910>>...31

/PHP-8.2/Zend/tests/type_declarations/
H A Dstrict_call_weak.phpt11 // Will succeed: Function was declared in weak mode, but that does not matter
12 // This file uses strict mode, so the call is strict, and float denied for int
H A Dstrict_call_weak_explicit.phpt11 // Will succeed: Function was declared in weak mode, but that does not matter
12 // This file uses strict mode, so the call is strict, and float denied for int
/PHP-8.2/ext/pdo_sqlite/tests/
H A Dopen_basedir.phpt22 $db = new PDO('sqlite:file:../not_in_open_basedir.sqlite?mode=ro');
31 open_basedir prohibits opening file:../not_in_open_basedir.sqlite?mode=ro
/PHP-8.2/ext/standard/tests/array/
H A Darray_search_variation4.phpt25 //false in strict mode
30 // false in strict mode
35 // false in stric mode
48 var_dump( array_search('123abc', array(123), TRUE) ); // false in strict mode
H A Din_array_variation4.phpt27 //false in strict mode
32 // false in strict mode
37 // false in stric mode
50 var_dump( in_array('123abc', array(123), TRUE) ); // false in strict mode
/PHP-8.2/TSRM/
H A Dtsrm_win32.c190 TSRM_API int tsrm_win32_access(const char *pathname, int mode) in tsrm_win32_access() argument
221 int ret = php_win32_ioutil_access_w(pathw, mode); in tsrm_win32_access()
222 if (0 > ret || X_OK == mode || F_OK == mode) { in tsrm_win32_access()
287 if(mode == 0 || mode > 6) { in tsrm_win32_access()
293 } else if(mode <= 2) { in tsrm_win32_access()
299 } else if(mode <= 4) { in tsrm_win32_access()
448 int fno, type_len, read, mode; in popen_ex() local
578 fno = _open_osfhandle((tsrm_intptr_t)in, _O_RDONLY | mode); in popen_ex()
581 fno = _open_osfhandle((tsrm_intptr_t)out, _O_WRONLY | mode); in popen_ex()
698 shm->descriptor->shm_perm.mode = flags; in shmget()
[all …]
/PHP-8.2/ext/phar/
H A Dstream.h22 php_url* phar_parse_url(php_stream_wrapper *wrapper, const char *filename, const char *mode, int op…
25 …apper_open_url(php_stream_wrapper *wrapper, const char *path, const char *mode, int options, zend_…
/PHP-8.2/ext/sysvmsg/tests/
H A D004.phpt11 echo "Set mode:\n";
12 $arr = array('msg_perm.mode' => 0600);
43 Set mode:
/PHP-8.2/ext/standard/tests/file/
H A Dfpassthru_variation.phpt54 echo "\n--- Testing with binary mode file ---\n";
55 /* Opening the file in binary read mode */
105 --- Testing with binary mode file ---
H A Duserwrapper.phpt16 function mkdir($directory, $mode, $options) {
17 …printf("Making directory: %s as %o%s\n", $directory, $mode, $options & STREAM_MKDIR_RECURSIVE ? " …
29 return array('dev'=>1, 'ino'=>2, 'mode'=>0644, 'nlink'=>3,
71 [mode] => 420
H A Dfgets_variation5.phpt19 echo "\n-- Testing fgets() with file opened using mode $file_mode --\n";
55 -- Testing fgets() with file opened using mode w+ --
82 -- Testing fgets() with file opened using mode w+b --
109 -- Testing fgets() with file opened using mode w+t --
136 -- Testing fgets() with file opened using mode a+ --
163 -- Testing fgets() with file opened using mode a+b --
190 -- Testing fgets() with file opened using mode a+t --
217 -- Testing fgets() with file opened using mode x+ --
244 -- Testing fgets() with file opened using mode x+b --
271 -- Testing fgets() with file opened using mode x+t --
/PHP-8.2/win32/
H A Dioutil.h270 PW32IO int php_win32_ioutil_access_w(const wchar_t *path, mode_t mode);
271 PW32IO int php_win32_ioutil_mkdir_w(const wchar_t *path, mode_t mode);
278 __forceinline static int php_win32_ioutil_access(const char *path, mode_t mode) in php_win32_ioutil_access() argument
290 ret = php_win32_ioutil_access_w(pathw, mode); in php_win32_ioutil_access()
305 mode_t mode = 0; in php_win32_ioutil_open() local
321 mode = (mode_t) va_arg(arg, int); in php_win32_ioutil_open()
325 ret = php_win32_ioutil_open_w(pathw, flags, mode); in php_win32_ioutil_open()
530 __forceinline static int php_win32_ioutil_chmod(const char *patha, int mode) in php_win32_ioutil_chmod() argument
543 ret = _wchmod(pathw, mode); in php_win32_ioutil_chmod()
557 __forceinline static int php_win32_ioutil_mkdir(const char *path, mode_t mode) in php_win32_ioutil_mkdir() argument
[all …]
/PHP-8.2/ext/shmop/tests/
H A D002.phpt73 shmop_open(): Argument #2 ($mode) must be a valid access mode
74 shmop_open(): Argument #2 ($mode) must be a valid access mode
/PHP-8.2/ext/pcntl/tests/
H A Dpcntl_getpriority_error.phpt2 pcntl_getpriority() - Wrong mode passed and also for non existing process id provided
34 pcntl_getpriority(): Argument #2 ($mode) must be one of PRIO_PGRP, PRIO_USER, or PRIO_PROCESS
/PHP-8.2/ext/standard/tests/streams/
H A Dstream_get_meta_data_socket_variation4.phpt48 ["mode"]=>
67 ["mode"]=>
86 ["mode"]=>
H A Dbug72853.phpt37 ["mode"]=>
53 ["mode"]=>
/PHP-8.2/ext/iconv/
H A Diconv.stub.php39 function iconv_mime_decode(string $string, int $mode = 0, ?string $encoding = null): string|false {} argument
45 function iconv_mime_decode_headers(string $headers, int $mode = 0, ?string $encoding = null): array… argument
/PHP-8.2/ext/spl/tests/
H A DSplDoublyLinkedList_consistent_iterator_mode.phpt11 /* SplDoublyLinkedList would previously check the iteration mode *each time*
14 iteration mode was changed in the middle of a loop */
/PHP-8.2/ext/mysqli/tests/
H A Dbug55582.phpt37 mysqli_num_rows() cannot be used in MYSQLI_USE_RESULT mode
42 mysqli_num_rows() cannot be used in MYSQLI_USE_RESULT mode
/PHP-8.2/ext/zlib/tests/
H A Dzlib_wrapper_meta_data_basic.phpt31 ["mode"]=>
51 ["mode"]=>
/PHP-8.2/ext/dba/
H A Ddba.stub.php16 function dba_popen(string $path, string $mode, ?string $handler = null, int $permission = 0o644, in… argument
19 function dba_open(string $path, string $mode, ?string $handler = null, int $permission = 0o644, int… argument
/PHP-8.2/ext/standard/tests/image/
H A Dbug75708.phpt11 function stream_open($file, $mode) {
12 $this->handle = fopen(str_replace('fs://', __DIR__ . '/', $file), $mode);
/PHP-8.2/ext/sqlite3/tests/
H A Dsqlite3_defensive.phpt2 SQLite3 defensive mode ini setting
9 die("skip: sqlite3 library version < 3.26: no support for defensive mode");
/PHP-8.2/ext/zip/
H A Dphp_zip.h83 php_stream *php_stream_zip_opener(php_stream_wrapper *wrapper, const char *path, const char *mode, …
84 php_stream *php_stream_zip_open(struct zip *arch, struct zip_stat *sb, const char *mode, zip_flags_…
/PHP-8.2/ext/pdo_odbc/tests/
H A Dautocommit_change_mode.phpt2 PDO ODBC auto commit mode
115 SQLSTATE[HY000]: General error: Cannot change autocommit mode while a transaction is already open
119 SQLSTATE[HY000]: General error: Cannot change autocommit mode while a transaction is already open
127 SQLSTATE[HY000]: General error: Cannot change autocommit mode while a transaction is already open
131 SQLSTATE[HY000]: General error: Cannot change autocommit mode while a transaction is already open

Completed in 41 milliseconds

12345678910>>...31