Home
last modified time | relevance | path

Searched refs:p (Results 351 – 375 of 739) sorted by relevance

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

/PHP-7.0/sapi/fpm/fpm/
H A Dfpm_main.c932 if (p) {
933 if ((p == path || IS_SLASH(*(p-1))) &&
934 (*(p+2) == 0 || IS_SLASH(*(p+2)))
939 p = strstr(p+1, "..");
944 (*(p+2) == 0 || IS_SLASH(*(p+2)))
1088 while (*p != '\0' && *p != '/') {
1095 memmove(env_script_filename, p, strlen(p) + 1);
1101 *p =0;
1109 while (*p != '\0' && *p != '/') {
1116 memmove(env_script_filename, p, strlen(p) + 1);
[all …]
/PHP-7.0/ext/mbstring/
H A Dphp_mbregex.c371 const char *p; in _php_mb_regex_name2mbctype() local
379 for (p = mapping->names; *p != '\0'; p += (strlen(p) + 1)) { in _php_mb_regex_name2mbctype()
480 char *p = str; in _php_mb_regex_get_option_string() local
486 *(p++) = 'i'; in _php_mb_regex_get_option_string()
494 *(p++) = 'x'; in _php_mb_regex_get_option_string()
503 *(p++) = 'p'; in _php_mb_regex_get_option_string()
561 *(p++) = c; in _php_mb_regex_get_option_string()
803 char *p; in _php_mb_regex_ereg_replace_exec() local
925 p[0] == '\\' && p[1] >= '0' && p[1] <= '9') { in _php_mb_regex_ereg_replace_exec()
932 p += 2; in _php_mb_regex_ereg_replace_exec()
[all …]
/PHP-7.0/ext/phar/tests/
H A Dbug71391.phpt9 $p = new PharData(__DIR__."/bug71391.test.tar");
10 $p->delMetaData();
H A Dalias_acrobatics.phpt13 $p = new Phar($fname);
15 $p->setAlias('foo');
16 $p['unused'] = 'hi';
H A Dbug74991.phpt12 $p = new Phar('sample.phar');
14 $p['some/file'] = "<?php const MAXPATHLEN = 4096, OVERFLOW = 1, PATH = 'path'; set_include_path(str…
15 $p->setStub("<?php Phar::mapPhar('sample.phar'); __HALT_COMPILER();");
/PHP-7.0/ext/mbstring/oniguruma/
H A Dreggnu.c48 UChar *p; in re_adjust_startpos() local
52 p = onigenc_get_right_adjust_char_head(reg->enc, (UChar* )string, s); in re_adjust_startpos()
55 p = ONIGENC_LEFT_ADJUST_CHAR_HEAD(reg->enc, (UChar* )string, s); in re_adjust_startpos()
57 return p - (UChar* )string; in re_adjust_startpos()
H A Dregcomp.c489 p += len; in compile_length_string_node()
539 p += len; in compile_string_node()
1696 int* p; in compile_tree() local
2402 UChar *p; in is_not_included() local
3288 snode = onig_node_new_str(p, p + slen); in expand_case_fold_string_alt()
3415 r = onig_node_str_cat(snode, p, p + len); in expand_case_fold_string()
5038 p = s; in print_enc_string()
5048 p += enclen(enc, p); in print_enc_string()
5147 for (p = reg->exact; p < reg->exact_end; p++) { in print_optimize_info()
6149 for (p = NSTR(node)->s; p < NSTR(node)->end; p++) { in print_indent_tree()
[all …]
/PHP-7.0/ext/phar/tests/cache_list/files/
H A Dwrite18.phar.inc8 $p = new Phar(__FILE__);
10 $p["test.txt"]->chmod(0444);
/PHP-7.0/ext/reflection/tests/
H A DReflectionObject_export_basic3.phpt6 private $p = 1;
13 $Obj->p = 'value';
/PHP-7.0/ext/pcre/tests/
H A Dpcre_anchored.phpt5 if (@preg_match_all('/\p{N}/', '0123456789', $dummy) === false) {
6 die("skip no support for \p support PCRE library");
/PHP-7.0/ext/intl/grapheme/
H A Dgrapheme_util.c341 char *p, *e; in grapheme_strrpos_ascii() local
344 p = haystack + offset; in grapheme_strrpos_ascii()
347 p = haystack; in grapheme_strrpos_ascii()
357 while (e >= p) { in grapheme_strrpos_ascii()
359 return (e - p + (offset > 0 ? offset : 0)); in grapheme_strrpos_ascii()
366 while (e >= p) { in grapheme_strrpos_ascii()
368 return (e - p + (offset > 0 ? offset : 0)); in grapheme_strrpos_ascii()
/PHP-7.0/Zend/tests/
H A Dbug54367.phpt20 echo $a['p']('foo');
23 string(1) "p"
H A Dexception_013.phpt6 static private $p = 0;
16 var_dump(C::$p);
32 Exception: Cannot access private property C::$p in %sexception_013.php on line 13
/PHP-7.0/ext/standard/tests/file/
H A Dfnmatch_basic.phpt19 var_dump( fnmatch("*.p*p", $file) );
20 var_dump( fnmatch("*.p*", $file) );
/PHP-7.0/ext/standard/
H A Dphp_var.h57 PHPAPI int php_var_unserialize(zval *rval, const unsigned char **p, const unsigned char *max, php_u…
58 PHPAPI int php_var_unserialize_ref(zval *rval, const unsigned char **p, const unsigned char *max, p…
59 PHPAPI int php_var_unserialize_intern(zval *rval, const unsigned char **p, const unsigned char *max…
60 PHPAPI int php_var_unserialize_ex(zval *rval, const unsigned char **p, const unsigned char *max, ph…
/PHP-7.0/Zend/
H A Dzend_operators.h147 const char *p = haystack; in zend_memnstr() local
153 return (const char *)memchr(p, *needle, (end-p)); in zend_memnstr()
166 while (p <= end) { in zend_memnstr()
167 if ((p = (const char *)memchr(p, *needle, (end-p+1))) && ne == p[needle_len-1]) { in zend_memnstr()
169 return p; in zend_memnstr()
173 if (p == NULL) { in zend_memnstr()
177 p++; in zend_memnstr()
205 const char *p = end; in zend_memnrstr() local
222 p -= needle_len; in zend_memnrstr()
225 …if ((p = (const char *)zend_memrchr(haystack, *needle, (p - haystack) + 1)) && ne == p[needle_len-… in zend_memnrstr()
[all …]
/PHP-7.0/ext/date/tests/
H A Dbug52113.phpt10 $p = new DatePeriod($start, $diff, 2);
16 $p = new DatePeriod($start, $diff_un, 2);
17 var_dump($diff_un, $p);
30 $p = new DatePeriod($start, $diff_un, 2);
31 var_dump($unser, $p);
/PHP-7.0/ext/opcache/
H A Dzend_shared_alloc.h76 void *p; member
128 void *_zend_shared_memdup(void *p, size_t size, zend_bool free_source);
129 int zend_shared_memdup_size(void *p, size_t size);
/PHP-7.0/ext/phar/tests/tar/
H A Dalias_acrobatics.phpt13 $p = new Phar($fname);
15 $p->setAlias('foo');
16 $p['unused'] = 'hi';
/PHP-7.0/ext/phar/tests/zip/
H A Dalias_acrobatics.phpt13 $p = new Phar($fname);
15 $p->setAlias('foo');
16 $p['unused'] = 'hi';
/PHP-7.0/ext/mysqlnd/
H A Dmysqlnd_plugin.c29 static enum_func_status mysqlnd_example_plugin_end(void * p);
69 enum_func_status mysqlnd_example_plugin_end(void * p) in mysqlnd_example_plugin_end() argument
71 struct st_mysqlnd_typeii_plugin_example * plugin = (struct st_mysqlnd_typeii_plugin_example *) p; in mysqlnd_example_plugin_end()
/PHP-7.0/ext/xml/tests/
H A Dxml_parse_into_struct_variation.phpt20 $p = xml_parser_create();
21 xml_parse_into_struct($p, $simple, $vals, $index);
22 xml_parser_free($p);
/PHP-7.0/ext/standard/tests/general_functions/
H A Dvar_export_basic8.phpt13 $o1->p = '22';
41 'p' => '22',
68 'p' => '22',
/PHP-7.0/ext/pdo/
H A Dpdo.c312 register char *p; in php_pdo_int64_to_str() local
327 p = &buffer[sizeof(buffer)-1]; in php_pdo_int64_to_str()
328 *p = '\0'; in php_pdo_int64_to_str()
333 *--p = digit_vec[rem]; in php_pdo_int64_to_str()
339 *--p = digit_vec[(unsigned int)(long_val - quo * 10)]; in php_pdo_int64_to_str()
342 while ((*dst++ = *p++) != 0) in php_pdo_int64_to_str()
/PHP-7.0/ext/session/tests/
H A Dskipif.inc17 if (($p = strpos($save_path, ';')) !== false) {
18 $save_path = substr($save_path, ++$p);

Completed in 75 milliseconds

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