/php-src/ext/curl/ |
H A D | sync-constants.php | 295 $parts = explode('.', $version); 297 if (count($parts) === 2) { 298 $parts[] = '0'; 301 if (count($parts) !== 3) { 307 foreach ($parts as $value) {
|
/php-src/ext/dom/tests/ |
H A D | gh12870.inc | 20 $parts = explode(':', $qualifiedName); 21 … var_dump($attr === $d->documentElement->getAttributeNodeNS($uri, $parts[count($parts) - 1]));
|
/php-src/ext/opcache/tests/ |
H A D | ssa_bug_010.phpt | 7 function foo($parts, $a, $b) { 10 foreach ($parts as $part) {
|
/php-src/ext/standard/tests/http/request_parse_body/ |
H A D | multipart_max_parts.phpt | 2 request_parse_body() with multipart and exceeding max parts 32 RequestParseBodyException: Multipart body parts limit exceeded 1. To increase the limit change max_…
|
H A D | multipart_options_max_parts.phpt | 34 RequestParseBodyException: Multipart body parts limit exceeded 1. To increase the limit change max_…
|
/php-src/ext/pdo_mysql/tests/inc/ |
H A D | mysql_pdo_test.inc | 66 $parts = explode(';', $dsn); 67 foreach ($parts as $k => $v) { 116 $parts = explode('.', $version_string); 117 if (count($parts) < 3) 120 $version = (int)$parts[0] * 10000; 121 $version+= (int)$parts[1] * 100; 122 $version+= (int)$parts[2];
|
/php-src/sapi/fpm/tests/ |
H A D | ghsa-54hq-v5wp-fqgv-max-body-parts-custom.phpt | 39 'parts' => [ 49 Warning: PHP Request Startup: Multipart body parts limit exceeded 10. To increase the limit change …
|
H A D | ghsa-54hq-v5wp-fqgv-max-body-parts-default.phpt | 38 'parts' => [ 50 Warning: PHP Request Startup: Multipart body parts limit exceeded 25. To increase the limit change …
|
H A D | ghsa-54hq-v5wp-fqgv-max-file-uploads.phpt | 37 'parts' => [
|
H A D | request_parse_body_multipart.phpt | 47 'parts' => [
|
H A D | tester.inc | 752 $parts = $stdin['parts'] ?? null; 753 if (empty($parts)) { 760 $count = $parts['count'] ?? null; 762 $dispositionType = $parts['disposition'] ?? 'form-data'; 763 $dispositionParam = $parts['param'] ?? 'name'; 764 $namePrefix = $parts['prefix'] ?? 'f'; 765 $nameSuffix = $parts['suffix'] ?? ''; 766 $value = $parts['value'] ?? 'test'; 767 $parts = []; 769 $parts[] = [ [all …]
|
/php-src/ext/pdo_mysql/tests/ |
H A D | bug_50323.phpt | 22 $parts = explode(';', $dsn); 23 foreach ($parts as $k => $v) {
|
H A D | pdo_mysql_attr_errmode.phpt | 96 … printf("[018] Cannot find all parts of the error info ('%s') in the exception message '%s'\n", 133 … printf("[026] Cannot find all parts of the error info ('%s') in the exception message '%s'\n",
|
/php-src/ext/reflection/tests/ |
H A D | reflectionclass_for_traits.phpt | 2 Tests some parts of ReflectionClass behavior for traits
|
H A D | ReflectionClass_toString_003.phpt | 2 ReflectionClass::__toString() - verify 'inherits', 'overwrites' and 'prototype' parts of method rep…
|
H A D | ReflectionClass_toString_002.phpt | 2 ReflectionClass::__toString() - verify 'inherits', 'overwrites' and 'prototype' parts of method rep…
|
/php-src/scripts/gdb/ |
H A D | php_gdb.py | 94 parts = [] 101 parts.append('(1<<%d)' % bit) 110 parts.append(str) 118 parts.append(ZendStringPrettyPrinter(str).to_string()) 120 parts.append(type_name) 122 str = separator.join(parts)
|
/php-src/ext/soap/tests/ |
H A D | gh8538.phpt | 2 Bug GH-8538 (SoapClient may strip parts of nmtokens)
|
/php-src/ext/openssl/tests/ |
H A D | bug77390.phpt | 94 $parts = str_split($data, (int) ceil(strlen($data) / 3)); 95 foreach ($parts as $part) {
|
/php-src/ext/standard/tests/network/ |
H A D | ip2long_variation2_x64.phpt | 6 …All numbers supplied as ``parts'' in a `.' notation may be decimal, octal, or hexadecimal, as spec…
|
/php-src/ext/pcre/tests/ |
H A D | preg_split_basic.phpt | 9 var_dump(preg_split('/[:,;\(\)]/', $string, -1, PREG_SPLIT_NO_EMPTY)); //parts of $string separated…
|
/php-src/ext/mysqli/tests/ |
H A D | mysqli_stmt_bind_param_many_columns.phpt | 15 the mysqli_stmt_bind_result test in large parts. There is only
|
/php-src/win32/build/ |
H A D | confutils.js | 2764 function _inner_glob(base, p, parts) argument 2766 var pat = parts[p]; 2771 if (p == parts.length) { 2778 if (p < parts.length - 1) { 2785 if (FSO.FolderExists(full_name) && p == parts.length - 1) { 2812 if (p == parts.length - 1) { 2816 subitems = _inner_glob(base + "\\" + item_name, p + 1, parts); 2828 if (p == parts.length - 1) {
|
/php-src/Zend/ |
H A D | README.md | 41 Most parts of the old zend_execute.c go into `zend_vm_def.h`. Here you can find
|
/php-src/ext/soap/ |
H A D | php_sdl.c | 552 char *parts = (char*)partsAttribute->children->content; in wsdl_soap_binding_body() local 556 while (*parts) { in wsdl_soap_binding_body() 561 while (*parts == ' ') ++parts; in wsdl_soap_binding_body() 562 if (*parts == '\0') break; in wsdl_soap_binding_body() 563 end = strchr(parts, ' '); in wsdl_soap_binding_body() 566 if (param->paramName && strcmp(parts, param->paramName) == 0) { in wsdl_soap_binding_body() 577 soap_error1(E_ERROR, "Parsing WSDL: Missing part '%s' in <message>", parts); in wsdl_soap_binding_body() 579 parts += strlen(parts); in wsdl_soap_binding_body()
|