Home
last modified time | relevance | path

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

12345678910>>...27

/PHP-5.3/ext/phar/tests/cache_list/files/
H A Dwrite17.phar.inc8 $p = new Phar(__FILE__);
9 var_dump($p->getMetadata());
10 $p->setMetadata("hi");
11 var_dump($p->getMetadata());
H A Dwrite24.phar2 $p = new Phar(__FILE__);
3 var_dump(isset($p["newname"]));
7 var_dump(isset($p["newname"]));
10 6���������������������test.txt����kJ������E�������<?php __HALT_COMPILER();-��p�����h,-��3…
H A Dwrite25.phar2 $p = new Phar(__FILE__);
3 var_dump(isset($p["mounted"]));
5 var_dump(isset($p["mounted"]));
6 echo $p["mounted"]->getContent(),"\nok\n";
H A Dwrite16.phar2 $p = new Phar(__FILE__);
3 var_dump(isset($p["test.txt"]));
4 unset($p["test.txt"]);
5 var_dump(isset($p["test.txt"]));
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 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 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 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 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"]));
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());
/PHP-5.3/Zend/
H A Dzend_variables.c100 ZEND_API void zval_add_ref(zval **p) in zval_add_ref() argument
102 Z_ADDREF_PP(p); in zval_add_ref()
164 ZEND_API void zval_property_ctor(zval **p) /* {{{ */ in zval_property_ctor() argument
166 zval *orig_ptr = *p; in zval_property_ctor()
168 ALLOC_ZVAL(*p); in zval_property_ctor()
169 **p = *orig_ptr; in zval_property_ctor()
170 zval_copy_ctor(*p); in zval_property_ctor()
171 Z_SET_REFCOUNT_PP(p, 1); in zval_property_ctor()
172 Z_UNSET_ISREF_PP(p); in zval_property_ctor()
/PHP-5.3/ext/tidy/tests/
H A D026.phpt11 echo '<p>xpto</p>';
22 <p>xpto</p>
/PHP-5.3/ext/mbstring/oniguruma/
H A Dregparse.c119 xmemcpy(to->p, from->p, from->used); in bbuf_clone()
1506 return node_new_str(p, p + 1); in node_new_str_char()
2182 p->lower = 0; p->upper = REPEAT_INFINITE; p->greedy = 1; in onig_reduce_nested_quantifier()
2186 p->lower = 0; p->upper = REPEAT_INFINITE; p->greedy = 0; in onig_reduce_nested_quantifier()
2190 p->lower = 0; p->upper = 1; p->greedy = 0; in onig_reduce_nested_quantifier()
2194 p->lower = 0; p->upper = 1; p->greedy = 0; in onig_reduce_nested_quantifier()
2200 p->lower = 0; p->upper = 1; p->greedy = 1; in onig_reduce_nested_quantifier()
2690 q = p + enc_len(enc, p); in find_str_position()
2721 p += enc_len(enc, p); in str_exist_check_with_esc()
2725 q = p + enc_len(enc, p); in str_exist_check_with_esc()
[all …]
/PHP-5.3/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.3/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.3/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.3/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.3/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.3/ext/sqlite/libsqlite/src/
H A Dutil.c56 void *p; in sqliteMalloc_() local
88 return p; in sqliteMalloc_()
117 if( p ){ in sqliteFree_()
119 pi = p; in sqliteFree_()
152 void *p; in sqliteRealloc_() local
195 return p; in sqliteRealloc_()
253 void *p; in sqliteMalloc() local
259 return p; in sqliteMalloc()
267 void *p; in sqliteMallocRaw() local
271 return p; in sqliteMallocRaw()
[all …]
/PHP-5.3/win32/
H A Dglob.c363 const Char *p; local
372 h < (char *)eb && *p && *p != SLASH; *h++ = (char) *p++)
556 Char *p, *q; local
585 p = pattern;
586 while (*p != EOS && !IS_SLASH(*p)) {
591 *q++ = *p++;
596 pattern = p;
736 for (p = path; *p++;)
914 for (p = s; *p; p++)
917 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

Completed in 52 milliseconds

12345678910>>...27