Home
last modified time | relevance | path

Searched refs:p (Results 176 – 200 of 726) sorted by relevance

12345678910>>...30

/PHP-5.5/ext/tidy/tests/
H A D026.phpt11 echo '<p>xpto</p>';
22 <p>xpto</p>
/PHP-5.5/ext/calendar/
H A Dcalendar.c524 p++; in heb_number_to_chars()
528 p++; in heb_number_to_chars()
542 p++; in heb_number_to_chars()
549 p++; in heb_number_to_chars()
556 p++; in heb_number_to_chars()
558 p++; in heb_number_to_chars()
563 p++; in heb_number_to_chars()
570 p++; in heb_number_to_chars()
580 p++; in heb_number_to_chars()
583 *(p) = *(p - 1); in heb_number_to_chars()
[all …]
/PHP-5.5/ext/phar/tests/cache_list/files/
H A Dwrite12.phar.inc8 $p = new Phar(__FILE__);
9 var_dump($p->getSignature());
11 $p->setSignatureAlgorithm(Phar::MD5);
12 var_dump($p->getSignature());
H A Dwrite15.phar.inc8 $p = new Phar(__FILE__);
9 var_dump(isset($p["copied"]));
10 $p->copy("test.txt","copied");
11 var_dump(isset($p["copied"]));
H A Dwrite21.phar.inc8 $p = new Phar(__FILE__);
9 var_dump($p["test.txt"]->isCompressed());
10 $p["test.txt"]->compress(Phar::GZ);
11 var_dump($p["test.txt"]->isCompressed());
H A Dwrite25.phar.inc8 $p = new Phar(__FILE__);
9 var_dump(isset($p["mounted"]));
11 var_dump(isset($p["mounted"]));
12 echo $p["mounted"]->getContent(),"\nok\n";
H A Dwrite13.phar.inc8 $p = new Phar(__FILE__);
9 var_dump($p["test.txt"]->isCompressed());
11 $p->compressFiles(Phar::GZ);
12 var_dump($p["test.txt"]->isCompressed());
H A Dwrite14.phar.inc8 $p = new Phar(__FILE__);
9 var_dump($p["test.txt"]->isCompressed());
11 $p->decompressFiles();
12 var_dump($p["test.txt"]->isCompressed());
H A Dwrite19.phar.inc8 $p = new Phar(__FILE__);
9 var_dump($p["test.txt"]->getMetadata());
10 $p["test.txt"]->setMetadata("hi2");
11 var_dump($p["test.txt"]->getMetadata());
H A Dwrite20.phar.inc8 $p = new Phar(__FILE__);
9 var_dump($p["test.txt"]->getMetadata());
10 $p["test.txt"]->delMetadata();
11 var_dump($p["test.txt"]->getMetadata());
H A Dwrite22.phar.inc8 $p = new Phar(__FILE__);
9 var_dump($p["test.txt"]->isCompressed());
10 $p["test.txt"]->decompress();
11 var_dump($p["test.txt"]->isCompressed());
H A Dwrite16.phar.inc8 $p = new Phar(__FILE__);
9 var_dump(isset($p["test.txt"]));
10 unset($p["test.txt"]);
11 var_dump(isset($p["test.txt"]));
/PHP-5.5/ext/pcre/pcrelib/testdata/
H A Dtestinput647 /^\p{Cc}/8
53 /^\p{Cf}/8
58 /^\p{Cn}/8
63 /^\p{Co}/8
68 /^\p{Ll}/8
74 /^\p{Lm}/8
79 /^\p{Lo}/8
629 /^(\p{Z}[^\p{C}\p{Z}]+)*$/
638 /^\p{Balinese}\p{Cuneiform}\p{Nko}\p{Phags_Pa}\p{Phoenician}/8
721 /\p{Carian}\p{Cham}\p{Kayah_Li}\p{Lepcha}\p{Lycian}\p{Lydian}\p{Ol_Chiki}\p{Rejang}\p{Saurashtra}\p
[all …]
/PHP-5.5/ext/mbstring/oniguruma/
H A Dregparse.c120 xmemcpy(to->p, from->p, from->used); in bbuf_clone()
257 p += ONIGENC_MBC_ENC_LEN(enc, p); \
2208 p->lower = 0; p->upper = REPEAT_INFINITE; p->greedy = 1; in onig_reduce_nested_quantifier()
2212 p->lower = 0; p->upper = REPEAT_INFINITE; p->greedy = 0; in onig_reduce_nested_quantifier()
2216 p->lower = 0; p->upper = 1; p->greedy = 0; in onig_reduce_nested_quantifier()
2220 p->lower = 0; p->upper = 1; p->greedy = 0; in onig_reduce_nested_quantifier()
2226 p->lower = 0; p->upper = 1; p->greedy = 1; in onig_reduce_nested_quantifier()
2846 q = p + enclen(enc, p); in find_str_position()
2877 p += enclen(enc, p); in str_exist_check_with_esc()
2881 q = p + enclen(enc, p); in str_exist_check_with_esc()
[all …]
/PHP-5.5/ext/phar/tests/tar/
H A Dphar_magic.phpt11 $p = new Phar($fname);
12 var_dump($p->isFileFormat(Phar::TAR));
13 $p['a'] = '<?php include "b/c.php";' . "\n";
14 $p['b/c.php'] = '<?php echo "in b\n";$a = fopen("a", "r", true);echo stream_get_contents($a);fclose…
15 $p['d'] = "in d\n";
16 $p->setStub('<?php
/PHP-5.5/ext/standard/tests/strings/
H A D004.phpt15 $p = range(1,4);
16 shuffle($p);
17 $s = join('', $p);
26 $p = '1234';
27 $s = str_shuffle($p);
/PHP-5.5/ext/phar/tests/
H A Dphar_copy.phpt20 $p = new Phar($fname);
24 $p['a'] = 'hi';
25 $p->startBuffering();
26 $p->copy('a', 'b');
27 echo file_get_contents($p['b']->getPathName());
28 $p['a']->compress(Phar::GZ);
29 $p['b']->setMetadata('a');
30 $p->copy('b', 'c');
31 $p->stopBuffering();
32 echo file_get_contents($p['c']->getPathName());
[all …]
/PHP-5.5/ext/standard/
H A Dversioning.c38 const char *p; in php_canonicalize_version() local
45 p = version; in php_canonicalize_version()
47 *q++ = lp = *p++; in php_canonicalize_version()
49 while (*p) { in php_canonicalize_version()
59 if (isspecialver(*p)) { in php_canonicalize_version()
63 } else if ((isndig(lp) && isdig(*p)) || (isdig(lp) && isndig(*p))) { in php_canonicalize_version()
67 *q++ = *p; in php_canonicalize_version()
68 } else if (!isalnum(*p)) { in php_canonicalize_version()
73 *q++ = *p; in php_canonicalize_version()
75 lp = *p++; in php_canonicalize_version()
/PHP-5.5/ext/pcre/tests/
H A Dbacktrack_limit.phpt5 if (@preg_match_all('/\p{N}/', '0123456789', $dummy) === false) {
6 die("skip no support for \p support PCRE library");
14 var_dump(preg_match_all('/.*\p{N}/', '0123456789', $dummy));
17 var_dump(preg_match_all('/\p{Nd}/', '0123456789', $dummy));
/PHP-5.5/win32/
H A Dglob.c372 const Char *p; local
381 h < (char *)eb && *p && *p != SLASH; *h++ = (char) *p++)
565 Char *p, *q; local
594 p = pattern;
595 while (*p != EOS && !IS_SLASH(*p)) {
600 *q++ = *p++;
605 pattern = p;
745 for (p = path; *p++;)
923 for (p = s; *p; p++)
926 for (p = s; *p; p++)
[all …]
H A Dsyslog.h37 #define LOG_PRI(p) ((p) & LOG_PRIMASK) argument
54 #define LOG_FAC(p) (((p) & LOG_FACMASK) >> 3) argument
/PHP-5.5/ext/mysqli/
H A Dmysqli_prop.c42 MYSQL *p; \
54 MYSQL_RES *p; \
67 MYSQL_STMT *p; \
83 if (!p) {\
103 if (!p) {\
300 if (!p) { in result_type_read()
319 if (!p || !p->field_count || !(ret = mysql_fetch_lengths(p))) { in result_lengths_read()
344 MY_STMT *p; in MYSQLI_MAP_PROPERTY_FUNC_LONG() local
351 if (!p) { in MYSQLI_MAP_PROPERTY_FUNC_LONG()
363 MY_STMT *p; in stmt_affected_rows_read() local
[all …]
/PHP-5.5/sapi/cli/
H A Dphp_cli_server.c525 p++; in add_response_header()
526 } while (*p == ' ' || *p == '\t'); in add_response_header()
1298 for (p = sal; *p; p++) { in php_network_listen_socket()
1493 q = p; in php_cli_server_request_translate_vpath()
1581 if (p < decoded_vpath_end && *p == '/') { in normalize_vpath()
1591 if (n - p == 2 && p[0] == '.' && p[1] == '.') { in normalize_vpath()
1593 --p; in normalize_vpath()
1610 } else if (n - p == 1 && p[0] == '.') { in normalize_vpath()
1747 --p; in php_cli_server_client_read_request_on_message_complete()
2264 port = strtol(p + 1, &p, 10); in php_cli_server_ctor()
[all …]
/PHP-5.5/ext/mbstring/libmbfl/filters/
H A Dmbfilter_htmlent.c113 char *p; in mbfl_filt_conv_html_enc() local
115 for (p = e->name; *p != '\0'; p++) { in mbfl_filt_conv_html_enc()
116 CK((*filter->output_function)((int)*p, filter->data)); in mbfl_filt_conv_html_enc()
123 int *p = tmp + sizeof(tmp) / sizeof(tmp[0]); in mbfl_filt_conv_html_enc() local
129 *(--p) = '\0'; in mbfl_filt_conv_html_enc()
131 *(--p) = "0123456789"[uc % 10]; in mbfl_filt_conv_html_enc()
135 for (; *p != '\0'; p++) { in mbfl_filt_conv_html_enc()
136 CK((*filter->output_function)(*p, filter->data)); in mbfl_filt_conv_html_enc()
/PHP-5.5/ext/dom/tests/
H A DDOMDocument_loadHTML_basic.phpt13 $doc->loadHTML("<html><body><p>Test<br></p></body></html>");
18 <html><body><p>Test<br></p></body></html>

Completed in 69 milliseconds

12345678910>>...30