Home
last modified time | relevance | path

Searched refs:p (Results 251 – 275 of 823) sorted by relevance

1...<<11121314151617181920>>...33

/PHP-8.2/ext/phar/tests/cache_list/files/
H A Dwrite11.phar2 $p = new Phar(__FILE__);
3 var_dump($p->getStub());
5 $p->setDefaultStub();
H A Dwrite9.phar2 $p = new Phar(__FILE__);
3 var_dump($p->getStub());
5 $p->setStub("<?php __HALT"."_COMPILER();");
H A Dwrite10.phar2 $p = new Phar(__FILE__);
3 var_dump($p->getStub());
6 $p->setStub($a);
H A Dwrite8.phar.inc8 $p = new Phar(__FILE__);
9 var_dump($p->getAlias());
11 $p->setAlias("hi");
H A Dwrite11.phar.inc8 $p = new Phar(__FILE__);
9 var_dump($p->getStub());
11 $p->setDefaultStub();
H A Dwrite9.phar.inc8 $p = new Phar(__FILE__);
9 var_dump($p->getStub());
11 $p->setStub("<?php __HALT"."_COMPILER();");
/PHP-8.2/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()
574 *(p++) = c; in _php_mb_regex_get_option_string()
720 p = replace; in mb_regex_substitute()
725 if (clen != 1 || p == eos || p[0] != '\\') { in mb_regex_substitute()
728 p += clen; in mb_regex_substitute()
742 p++; in mb_regex_substitute()
753 p++; in mb_regex_substitute()
758 p++; in mb_regex_substitute()
763 if (clen != 1 || p == eos || (p[0] != '<' && p[0] != '\'')) { in mb_regex_substitute()
[all …]
/PHP-8.2/main/
H A DSAPI.c177 char *p; in sapi_read_post_data() local
186 for (p=content_type; p<content_type+content_type_length; p++) { in sapi_read_post_data()
187 switch (*p) { in sapi_read_post_data()
193 *p = 0; in sapi_read_post_data()
196 *p = tolower(*p); in sapi_read_post_data()
318 char *p; in get_default_content_type() local
692 if (!p->line || !p->line_len) { in sapi_header_op()
695 header_line = estrndup(p->line, p->line_len); in sapi_header_op()
936 p++; in sapi_register_post_entries()
1129 p++; in sapi_add_request_header()
[all …]
/PHP-8.2/ext/pcre/tests/
H A Dbug38600.phpt7 var_dump(preg_match('/(?<!\w)(0x[\p{N}]+[lL]?|[\p{Nd}]+(e[\p{Nd}]*)?[lLdDfF]?)(?!\w)/', $foo, $m));
/PHP-8.2/ext/opcache/jit/dynasm/
H A Ddasm_mips.lua960 if p == "D" then
962 elseif p == "T" then
964 elseif p == "S" then
966 elseif p == "F" then
968 elseif p == "G" then
970 elseif p == "H" then
972 elseif p == "R" then
974 elseif p == "I" then
976 elseif p == "U" then
978 elseif p == "O" then
[all …]
/PHP-8.2/ext/openssl/tests/
H A Dbug55259.phpt12 $dh_details = array('p' => $phex, 'g' => '2');
13 $dh = openssl_pkey_new(array('dh'=> array('p' => $phex, 'g' => '2')));
15 $dh = openssl_pkey_new(array('dh'=> array( 'p' => hex2bin($phex), 'g' => '2')));
17 var_dump(bin2hex($details['dh']['p']));
H A Dbug72336.phpt7 $p = '00f8000ae45b2dacb47dd977d58b719d097bdf07cb2c17660ad898518c08' .
21 var_dump(openssl_pkey_new(array('dsa' => array('p' => $p, 'q' => $q, 'g' => $g))));
/PHP-8.2/ext/tidy/tests/
H A D020.phpt10 <p>Isto � um texto em Portugu�s<br>
11 para testes.</p>
32 <p>Isto � um texto em Portugu�s<br />
33 para testes.</p>
/PHP-8.2/ext/mbstring/libmbfl/mbfl/
H A Dmbfilter_8bit.c98 unsigned char *p = *in, *e = p + *in_len; in mb_8bit_to_wchar() local
101 while (p < e && out < limit) { in mb_8bit_to_wchar()
102 unsigned char c = *p++; in mb_8bit_to_wchar()
106 *in_len = e - p; in mb_8bit_to_wchar()
107 *in = p; in mb_8bit_to_wchar()
/PHP-8.2/ext/sodium/tests/
H A Dcrypto_scalarmult.phpt8 $p = sodium_hex2bin("8520f0098930a754748b7ddcb43ef75a0dbf3a0d26381af4eba4a98eaa9b4e6a");
9 $q = sodium_crypto_scalarmult($n, $p);
13 sodium_crypto_scalarmult(substr($n, 1), $p);
H A Dcrypto_scalarmult_ristretto255.phpt15 $p = sodium_crypto_scalarmult_ristretto255_base($n);
27 $p = sodium_crypto_scalarmult_ristretto255_base($n);
29 var_dump(sodium_bin2hex($p));
30 assert($p === $p2);
34 sodium_crypto_scalarmult(substr($n, 1), $p);
/PHP-8.2/ext/mbstring/libmbfl/filters/
H A Dmbfilter_qprint.c261 unsigned char *p = *in, *e = p + *in_len; in mb_qprint_to_wchar() local
264 while (p < e && out < limit) { in mb_qprint_to_wchar()
265 unsigned char c = *p++; in mb_qprint_to_wchar()
267 if (c == '=' && p < e) { in mb_qprint_to_wchar()
268 unsigned char c2 = *p++; in mb_qprint_to_wchar()
270 if (hex2code_map[c2] >= 0 && p < e) { in mb_qprint_to_wchar()
271 unsigned char c3 = *p++; in mb_qprint_to_wchar()
280 } else if (c2 == '\r' && p < e) { in mb_qprint_to_wchar()
281 unsigned char c3 = *p++; in mb_qprint_to_wchar()
295 *in_len = e - p; in mb_qprint_to_wchar()
[all …]
H A Dmbfilter_euc_tw.c262 unsigned char *p = *in, *e = p + *in_len; in mb_euctw_to_wchar() local
265 while (p < e && out < limit) { in mb_euctw_to_wchar()
266 unsigned char c = *p++; in mb_euctw_to_wchar()
271 unsigned char c2 = *p++; in mb_euctw_to_wchar()
286 } else if (c == 0x8E && p < e) { in mb_euctw_to_wchar()
287 unsigned char c2 = *p++; in mb_euctw_to_wchar()
289 if ((c2 == 0xA1 || c2 == 0xA2 || c2 == 0xAE) && p < e) { in mb_euctw_to_wchar()
291 unsigned char c3 = *p++; in mb_euctw_to_wchar()
294 unsigned char c4 = *p++; in mb_euctw_to_wchar()
325 *in_len = e - p; in mb_euctw_to_wchar()
[all …]
/PHP-8.2/ext/phar/tests/
H A Dphar_offset_get_error.phpt16 $p = new Phar($fname);
17 $p[$iname] = "foobar\n";
21 $p[$ename] = "foobar\n";
32 $p['.phar/oops'] = 'hi';
37 $a = $p['.phar/stub.php'];
/PHP-8.2/ext/mysqli/tests/
H A Dmysqli_query_stored_proc.phpt19 if (!mysqli_query($link, 'DROP PROCEDURE IF EXISTS p'))
25 if (mysqli_multi_query($link, 'CALL p()')) {
38 if (mysqli_multi_query($link, 'CALL p()')) {
51 if (mysqli_multi_query($link, 'CALL p()')) {
70 if (!mysqli_query($link, 'DROP PROCEDURE IF EXISTS p'))
76 if (mysqli_multi_query($link, 'CALL p()')) {
93 if (!mysqli_query($link, 'DROP PROCEDURE IF EXISTS p'))
98 if (!mysqli_query($link, 'CALL p(@version)'))
104 if (!mysqli_query($link, 'CALL p(@version)'))
121 if (!mysqli_query($link, 'DROP PROCEDURE IF EXISTS p'))
[all …]
/PHP-8.2/ext/standard/tests/array/
H A Darray_chunk_variation23.phpt5 $array = array ("p" => 1, "q" => 2, "r" => 3, "s" => 4, "u" => 5, "v" => 6);
17 ["p"]=>
66 ["p"]=>
155 ["p"]=>
223 ["p"]=>
285 ["p"]=>
347 ["p"]=>
406 ["p"]=>
/PHP-8.2/Zend/tests/multibyte/
H A Dmultibyte_encoding_003.phpt9 ��<�?�p�h�p
10p�r�i�n�t� �"�H�e�l�l�o� �W�o�r�l�d�\�n�"�;�
/PHP-8.2/sapi/fpm/fpm/
H A Dfpm_unix.c123 char *p; in fpm_unix_resolve_socket_permissions() local
125 for (p=strchr(c->listen_acl_users, ',') ; p ; p=strchr(p+1, ',')) { in fpm_unix_resolve_socket_permissions()
130 char *p; in fpm_unix_resolve_socket_permissions() local
132 for (p=strchr(c->listen_acl_groups, ',') ; p ; p=strchr(p+1, ',')) { in fpm_unix_resolve_socket_permissions()
141 char *tmp, *p, *end; in fpm_unix_resolve_socket_permissions() local
153 for (p=tmp ; p ; p=end) { in fpm_unix_resolve_socket_permissions()
154 if ((end = strchr(p, ','))) { in fpm_unix_resolve_socket_permissions()
157 pwd = fpm_unix_get_passwd(wp, p, ZLOG_SYSERROR); in fpm_unix_resolve_socket_permissions()
185 for (p=tmp ; p ; p=end) { in fpm_unix_resolve_socket_permissions()
186 if ((end = strchr(p, ','))) { in fpm_unix_resolve_socket_permissions()
[all …]
/PHP-8.2/sapi/cli/
H A Dphp_cli_server.c431 p++; in add_response_header()
432 } while (*p == ' ' || *p == '\t'); in add_response_header()
1285 for (p = sal; *p; p++) { in php_network_listen_socket()
1467 q = p; in php_cli_server_request_translate_vpath()
1568 if (p < decoded_vpath_end && *p == '/') { in normalize_vpath()
1578 if (n - p == 2 && p[0] == '.' && p[1] == '.') { in normalize_vpath()
1597 } else if (n - p == 1 && p[0] == '.') { in normalize_vpath()
1802 --p; in php_cli_server_client_read_request_on_message_complete()
2431 port = strtol(p + 1, (char**)&p, 10); in php_cli_server_parse_addr()
2432 if (p && *p) { in php_cli_server_parse_addr()
[all …]
/PHP-8.2/ext/phar/tests/tar/
H A Dlinks3.phpt10 $p = new PharData(__DIR__ . '/files/biglink.tar');
14 echo $p['file.txt']->getContent();
15 echo $p['my/file']->getContent();

Completed in 156 milliseconds

1...<<11121314151617181920>>...33