Home
last modified time | relevance | path

Searched refs:p (Results 401 – 425 of 775) sorted by relevance

1...<<11121314151617181920>>...31

/PHP-7.1/Zend/tests/multibyte/
H A Dmultibyte_encoding_006.phpt15 ����<���?���p���h���p���
/PHP-7.1/ext/soap/tests/bugs/
H A Dbug37013.phpt41 $p = new ThingWithParent( 1, null );
42 $p2 = new ThingWithParent( 2, $p );
43 $p3 = new ThingWithParent( 3, $p );
45 $p->children = array( $p2, $p3 );
/PHP-7.1/ext/intl/tests/
H A Dmsgfmt_millisecond_dates.phpt18 $p = 'On 2012-05-06 AD at 15:22:49.123 GMT+02:00 something odd happened';
19 var_dump($mf->parse($p));
/PHP-7.1/ext/libxml/tests/
H A Dbug76777.phpt23 libxml_set_external_entity_loader(function($p,$s,$c) {
24 var_dump($p,$s,$c);
/PHP-7.1/Zend/
H A Dzend_types.h379 #define GC_REFCOUNT(p) (p)->gc.refcount argument
380 #define GC_TYPE(p) (p)->gc.u.v.type argument
381 #define GC_FLAGS(p) (p)->gc.u.v.flags argument
382 #define GC_INFO(p) (p)->gc.u.v.gc_info argument
383 #define GC_TYPE_INFO(p) (p)->gc.u.type_info argument
422 #define IS_CONSTANT_VISITED(p) (Z_CONST_FLAGS_P(p) & IS_CONSTANT_VISITED_MARK) argument
423 #define MARK_CONSTANT_VISITED(p) Z_CONST_FLAGS_P(p) |= IS_CONSTANT_VISITED_MARK argument
424 #define RESET_CONSTANT_VISITED(p) Z_CONST_FLAGS_P(p) &= ~IS_CONSTANT_VISITED_MARK argument
706 _res->ptr = (p); \
720 _res->ptr = (p); \
[all …]
H A Dzend_operators.c2555 *p = zend_tolower_ascii(*p); in zend_str_tolower()
2556 p++; in zend_str_tolower()
2567 if (*p != zend_tolower_ascii(*p)) { in zend_str_tolower_dup_ex()
2577 p++; in zend_str_tolower_dup_ex()
2583 p++; in zend_str_tolower_dup_ex()
2595 if (*p != zend_tolower_ascii(*p)) { in zend_string_tolower()
2605 p++; in zend_string_tolower()
2611 p++; in zend_string_tolower()
3049 p += td[(unsigned char)(p[needle_len])];
3068 p = end;
[all …]
H A Dzend_language_scanner.l98 char *p = (s), *boundary = p+(l); \
101 if (*p == '\n' || (*p == '\r' && (*(p+1) != '\n'))) { \
309 p = script; in zend_multibyte_detect_utf_encoding()
312 p = memchr(p, 0, script_size-(p-script)-2); in zend_multibyte_detect_utf_encoding()
313 if (!p) { in zend_multibyte_detect_utf_encoding()
316 if (*(p+1) == '\0' && *(p+2) == '\0') { in zend_multibyte_detect_utf_encoding()
322 p += 4; in zend_multibyte_detect_utf_encoding()
326 p = script; in zend_multibyte_detect_utf_encoding()
329 if (*p == '\0' && *(p+wchar_size-1) != '\0') { in zend_multibyte_detect_utf_encoding()
333 } else if (*p != '\0' && *(p+wchar_size-1) == '\0') { in zend_multibyte_detect_utf_encoding()
[all …]
/PHP-7.1/ext/pcre/pcrelib/
H A Dpcre_compile.c961 p++; in is_counted_repeat()
962 while (IS_DIGIT(*p)) p++; in is_counted_repeat()
969 p++; in is_counted_repeat()
970 while (IS_DIGIT(*p)) p++; in is_counted_repeat()
1129 for (p = ptr+2; *p != CHAR_NULL && *p != CHAR_RIGHT_CURLY_BRACKET; p++) in check_escape()
1644 return p; in read_repeat_counts()
4372 while(p[n+1] == p[0] + n + 1) n++; in add_list_to_class()
4410 while (p[1] == p[0] + 1) p++; in add_not_list_to_class()
4413 p++; in add_not_list_to_class()
5654 while (MAX_255(*p) && (cd->ctypes[*p] & ctype_space) != 0) p++; in compile_branch()
[all …]
/PHP-7.1/ext/phar/tests/tar/
H A Dbug70417.phpt8 exec('lsof -p ' . getmypid(), $out, $status);
16 exec('lsof -p ' . getmypid(), $out);
/PHP-7.1/ext/simplexml/tests/
H A Dbug69169.phpt14 <row p="c">
54 [p] => c
/PHP-7.1/sapi/phpdbg/
H A Dphpdbg_sigio_win32.c30 SigIoWatcherThread(VOID *p) in ZEND_EXTERN_MODULE_GLOBALS()
33 struct win32_sigio_watcher_data *swd = (struct win32_sigio_watcher_data *)p; in ZEND_EXTERN_MODULE_GLOBALS()
/PHP-7.1/Zend/tests/
H A Dbug70895.phpt8 array_map("%n %i aoeu %f aoeu %p", 0);
15 Warning: array_map\(\) expects parameter 1 to be a valid callback, function '%n %i aoeu %f aoeu %p'…
/PHP-7.1/ext/spl/
H A Dspl_observer.c778 if (*p!= 'x' || *++p != ':') { in SPL_METHOD()
781 ++p; in SPL_METHOD()
788 --p; /* for ';' */ in SPL_METHOD()
798 if (*p != ';') { in SPL_METHOD()
801 ++p; in SPL_METHOD()
802 if(*p != 'O' && *p != 'C' && *p != 'r') { in SPL_METHOD()
810 ++p; in SPL_METHOD()
846 if (*p != ';') { in SPL_METHOD()
849 ++p; in SPL_METHOD()
852 if (*p!= 'm' || *++p != ':') { in SPL_METHOD()
[all …]
/PHP-7.1/ext/phar/tests/
H A D030.phpt27 $p = new Phar($fname);
28 var_dump(isset($p['.phar/test']));
30 $p['.phar/test'];
/PHP-7.1/ext/mysqli/tests/
H A Dmysqli_stmt_execute_stored_proc_out.phpt29 if (!mysqli_query($link, 'DROP PROCEDURE IF EXISTS p'))
32 …if (mysqli_real_query($link, 'CREATE PROCEDURE p(IN ver_in VARCHAR(25), OUT ver_out VARCHAR(25)) B…
33 if (!$stmt = mysqli_prepare($link, 'CALL p(?, ?)'))
72 @mysqli_query($link, 'DROP PROCEDURE IF EXISTS p');
/PHP-7.1/ext/standard/tests/strings/
H A Dstrip_tags_variation5.phpt31 <p>13 &lt; 25</p>
46 <p>string</p> 1111\t <b>0000\t = 0000\n</b>
/PHP-7.1/sapi/apache2handler/
H A Dapache_config.c147 void *merge_php_config(apr_pool_t *p, void *base_conf, void *new_conf) in merge_php_config() argument
155 n = create_php_config(p, "merge_php_config"); in merge_php_config()
229 void *create_php_config(apr_pool_t *p, char *dummy) in create_php_config() argument
231 php_conf_rec *newx = (php_conf_rec *) apr_pcalloc(p, sizeof(*newx)); in create_php_config()
235 apr_pool_cleanup_register(p, newx, destroy_php_config, apr_pool_cleanup_null); in create_php_config()
/PHP-7.1/ext/mbstring/
H A Dmbstring.c742 p--; in php_mb_parse_encoding_list()
743 while (p > p1 && (*p == ' ' || *p == '\t')) { in php_mb_parse_encoding_list()
745 p--; in php_mb_parse_encoding_list()
1629 if ((MBSTRG(func_overload) & p->type) == p->type && in PHP_RINIT_FUNCTION()
1650 p++; in PHP_RINIT_FUNCTION()
1690 if ((MBSTRG(func_overload) & p->type) == p->type && in PHP_RSHUTDOWN_FUNCTION()
1697 p++; in PHP_RSHUTDOWN_FUNCTION()
2131 char *p; in PHP_FUNCTION() local
4345 ++p; in PHP_FUNCTION()
4346 } while (*p == ' ' || *p == '\t'); in PHP_FUNCTION()
[all …]
/PHP-7.1/ext/standard/
H A Dftp_fopen_wrapper.c839 char *p = tmp_line + 4; in php_stream_ftp_url_stat() local
844 while ((size_t)(p - tmp_line) < sizeof(tmp_line) && !isdigit(*p)) { in php_stream_ftp_url_stat()
845 p++; in php_stream_ftp_url_stat()
1075 *p = '\0'; in php_stream_ftp_mkdir()
1079 *p = '/'; in php_stream_ftp_mkdir()
1083 if (p == buf) { in php_stream_ftp_mkdir()
1090 if (!p) { in php_stream_ftp_mkdir()
1091 p = buf; in php_stream_ftp_mkdir()
1094 while (++p != e) { in php_stream_ftp_mkdir()
1095 if (*p == '\0' && *(p + 1) != '\0') { in php_stream_ftp_mkdir()
[all …]
/PHP-7.1/ext/standard/tests/general_functions/
H A Dproc_open-win32-mb0.phpt23 $p = proc_open(
38 proc_close($p);
H A Dproc_open-win32-mb1.phpt23 $p = proc_open(
35 proc_close($p);
/PHP-7.1/ext/standard/tests/streams/
H A Dbug72853.phpt17 $p = proc_open("ls", $descs, $pipes, '.', NULL, NULL);
25 proc_close($p);
/PHP-7.1/win32/build/
H A Dconfutils.js854 var p;
865 if (!p) {
867 if (p) {
868 p += "\\" + subdir;
1004 have = p ? 1 : 0
1020 return p;
2615 var p;
2626 for (p = 0; p < path_parts.length; p++) {
2629 if (p)
2639 var pat = parts[p];
[all …]
/PHP-7.1/ext/session/
H A Dmod_files.c112 const char *p; in ps_files_path_create() local
122 p = key; in ps_files_path_create()
127 buf[n++] = *p++; in ps_files_path_create()
375 const char *p, *last; in PS_OPEN_FUNC() local
392 p = strchr(save_path, ';'); in PS_OPEN_FUNC()
393 while (p) { in PS_OPEN_FUNC()
395 last = ++p; in PS_OPEN_FUNC()
396 p = strchr(p, ';'); in PS_OPEN_FUNC()
/PHP-7.1/ext/openssl/tests/
H A Dopenssl_csr_get_public_key_basic.phpt14 $dh_details = array('p' => $phex, 'g' => '2');
16 'dh'=> array('p' => hex2bin($phex), 'g' => '2'))

Completed in 142 milliseconds

1...<<11121314151617181920>>...31