Home
last modified time | relevance | path

Searched refs:p (Results 101 – 125 of 671) sorted by relevance

12345678910>>...27

/PHP-5.4/ext/phar/tests/files/
H A Dnophar.phar.inc4 $p = new Phar($fname);
5 $p['index.php'] = '<?php include "b/c.php";' . "\n";
6 $p['web.php'] = '<?php echo "web\n";';
7 $p['b/c.php'] = '<?php echo "in b\n";$a = fopen("index.php", "r", true);echo stream_get_contents($a…
8 $p['d'] = "in d\n";
9 $p->setStub($p->createDefaultStub('index.php', 'web.php'));
/PHP-5.4/tests/classes/
H A Dproperty_override_public_private.phpt7 public $p = "A::p";
10 echo $this->p . "\n";
16 private $p = "B::p";
19 echo $this->p . "\n";
33 Fatal error: Access level to B::$p must be public (as in class A) in %s on line 18
H A Dproperty_override_public_protected.phpt7 public $p = "A::p";
10 echo $this->p . "\n";
16 protected $p = "B::p";
19 echo $this->p . "\n";
33 Fatal error: Access level to B::$p must be public (as in class A) in %s on line 18
H A Dproperty_override_protectedStatic_privateStatic.phpt7 protected static $p = "A::p (static)";
10 echo self::$p . "\n";
16 private static $p = "B::p (static)";
19 echo self::$p . "\n";
31 Fatal error: Access level to B::$p must be protected (as in class A) or weaker in %s on line 18
H A Dproperty_override_publicStatic_privateStatic.phpt7 public static $p = "A::p (static)";
10 echo self::$p . "\n";
16 private static $p = "B::p (static)";
19 echo self::$p . "\n";
31 Fatal error: Access level to B::$p must be public (as in class A) in %s on line 18
H A Dproperty_override_publicStatic_protectedStatic.phpt7 public static $p = "A::p (static)";
10 echo self::$p . "\n";
16 protected static $p = "B::p (static)";
19 echo self::$p . "\n";
31 Fatal error: Access level to B::$p must be public (as in class A) in %s on line 18
H A Dproperty_override_protected_private.phpt7 protected $p = "A::p";
10 echo $this->p . "\n";
16 private $p = "B::p";
19 echo $this->p . "\n";
33 Fatal error: Access level to B::$p must be protected (as in class A) or weaker in %s on line 18
/PHP-5.4/
H A D.gdbinit41 if $p[$i] != 0
303 ____print_str $p->arKey $p->nKeyLength
310 set $p = $p->pListNext
333 ____print_str $p->arKey $p->nKeyLength
340 printf "%p\n", (void*)$p->pData
350 set $p = $p->pListNext
401 ____print_str $p->arKey $p->nKeyLength
408 set $p = $p->pListNext
609 while $p
650 set $p = $p->pNext
[all …]
/PHP-5.4/Zend/
H A Dzend_execute.h67 FREE_ZVAL_REL(p); in safe_free_zval_ptr_rel()
204 stack = p; in zend_vm_stack_destroy()
212 EG(argument_stack) = p; in zend_vm_stack_extend()
238 efree(p); in zend_vm_stack_pop()
278 efree(p); in zend_vm_stack_free_int()
290 efree(p); in zend_vm_stack_free()
316 if (UNEXPECTED(p->top == ZEND_VM_STACK_ELEMETS(p))) { in zend_vm_stack_push_args()
320 p = p->prev; in zend_vm_stack_push_args()
338 *p = NULL; in zend_vm_stack_clear_multiple()
400 #define zendi_zval_copy_ctor(p) zval_copy_ctor(&(p)) argument
[all …]
H A Dzend_ini.c218 p++; in zend_register_ini_entries()
234 p->on_modify(p, p->value, p->value_length, p->mh_arg1, p->mh_arg2, p->mh_arg3, stage TSRMLS_CC); in zend_ini_refresh_cache()
551 zend_bool *p; in ZEND_INI_MH() local
580 long *p; in ZEND_INI_MH() local
598 long *p, tmp; in ZEND_INI_MH() local
613 *p = tmp; in ZEND_INI_MH()
621 double *p; in ZEND_INI_MH() local
639 char **p; in ZEND_INI_MH() local
650 *p = new_value; in ZEND_INI_MH()
657 char **p; in ZEND_INI_MH() local
[all …]
/PHP-5.4/ext/phar/tests/tar/
H A Dphar_setsignaturealgo2.phpt18 $p = new Phar($fname);
19 $p['file1.txt'] = 'hi';
20 var_dump($p->getSignature());
21 $p->setSignatureAlgorithm(Phar::MD5);
22 var_dump($p->getSignature());
23 $p->setSignatureAlgorithm(Phar::SHA1);
24 var_dump($p->getSignature());
26 $p->setSignatureAlgorithm(Phar::SHA256);
27 var_dump($p->getSignature());
33 var_dump($p->getSignature());
[all …]
/PHP-5.4/ext/standard/tests/strings/
H A Dstrip_tags_basic2.phpt15 $string = "<html><p>hello</p><b>world</b><a href=\"#fragment\">Other text</a></html><?php echo hell…
20 "<p>",
21 '<p>',
26 "<html><p><a><?php"
48 string(27) "<p>hello</p>worldOther text"
50 string(27) "<p>hello</p>worldOther text"
60 string(64) "<html><p>hello</p>world<a href="#fragment">Other text</a></html>"
/PHP-5.4/sapi/cgi/
H A Dfastcgi.c209 while (p) { in fcgi_hash_destroy()
211 p = p->next; in fcgi_hash_destroy()
246 p->pos = p->data; in fcgi_hash_strndup()
247 p->end = p->pos + seg_size; in fcgi_hash_strndup()
272 p = p->next; in fcgi_hash_set()
307 *p = (*p)->next; in fcgi_hash_del()
310 p = &(*p)->next; in fcgi_hash_del()
326 p = p->next; in fcgi_hash_get()
335 while (p) { in fcgi_hash_apply()
337 func(p->var, p->var_len, p->val, p->val_len, arg TSRMLS_CC); in fcgi_hash_apply()
[all …]
/PHP-5.4/ext/phar/tests/zip/
H A Dphar_setsignaturealgo2.phpt20 $p = new Phar($fname);
21 $p['file1.txt'] = 'hi';
22 var_dump($p->getSignature());
26 $p = new Phar($fname2);
27 var_dump($p->getSignature());
32 $p = new Phar($fname3);
33 var_dump($p->getSignature());
38 $p = new Phar($fname4);
39 var_dump($p->getSignature());
46 $p = new Phar($fname5);
[all …]
H A Dphar_copy.phpt19 $p = new Phar($fname);
23 $p['a'] = 'hi';
24 $p->startBuffering();
25 $p->copy('a', 'b');
26 echo file_get_contents($p['b']->getPathName());
27 $p->copy('b', 'c');
28 $p->stopBuffering();
29 echo file_get_contents($p['c']->getPathName());
31 var_dump($p->isFileFormat(Phar::ZIP));
32 $p->copy('a', $ename);
/PHP-5.4/ext/mbstring/oniguruma/enc/
H A Diso8859_5.c110 const UChar* p = *pp; in iso_8859_5_mbc_to_normalize() local
113 ONIGENC_IS_MBC_ASCII(p)) || in iso_8859_5_mbc_to_normalize()
115 !ONIGENC_IS_MBC_ASCII(p))) { in iso_8859_5_mbc_to_normalize()
116 *lower = ENC_ISO_8859_5_TO_LOWER_CASE(*p); in iso_8859_5_mbc_to_normalize()
119 *lower = *p; in iso_8859_5_mbc_to_normalize()
130 const UChar* p = *pp; in iso_8859_5_is_mbc_ambiguous() local
134 ONIGENC_IS_MBC_ASCII(p)) || in iso_8859_5_is_mbc_ambiguous()
136 !ONIGENC_IS_MBC_ASCII(p))) { in iso_8859_5_is_mbc_ambiguous()
137 int v = (EncISO_8859_5_CtypeTable[*p] & in iso_8859_5_is_mbc_ambiguous()
H A Dkoi8.c110 const OnigUChar* p = *pp; in koi8_mbc_to_normalize() local
113 ONIGENC_IS_MBC_ASCII(p)) || in koi8_mbc_to_normalize()
115 !ONIGENC_IS_MBC_ASCII(p))) { in koi8_mbc_to_normalize()
116 *lower = ENC_KOI8_TO_LOWER_CASE(*p); in koi8_mbc_to_normalize()
119 *lower = *p; in koi8_mbc_to_normalize()
128 const OnigUChar* p = *pp; in koi8_is_mbc_ambiguous() local
132 ONIGENC_IS_MBC_ASCII(p)) || in koi8_is_mbc_ambiguous()
134 !ONIGENC_IS_MBC_ASCII(p))) { in koi8_is_mbc_ambiguous()
135 int v = (EncKOI8_CtypeTable[*p] & in koi8_is_mbc_ambiguous()
H A Dkoi8_r.c110 const UChar* p = *pp; in koi8_r_mbc_to_normalize() local
113 ONIGENC_IS_MBC_ASCII(p)) || in koi8_r_mbc_to_normalize()
115 !ONIGENC_IS_MBC_ASCII(p))) { in koi8_r_mbc_to_normalize()
116 *lower = ENC_KOI8_R_TO_LOWER_CASE(*p); in koi8_r_mbc_to_normalize()
119 *lower = *p; in koi8_r_mbc_to_normalize()
128 const UChar* p = *pp; in koi8_r_is_mbc_ambiguous() local
132 ONIGENC_IS_MBC_ASCII(p)) || in koi8_r_is_mbc_ambiguous()
134 !ONIGENC_IS_MBC_ASCII(p))) { in koi8_r_is_mbc_ambiguous()
135 int v = (EncKOI8_R_CtypeTable[*p] & in koi8_r_is_mbc_ambiguous()
/PHP-5.4/ext/sqlite3/libsqlite/
H A Dsqlite3.c44683 for(p=pList; p && p->pDirty; p=p->pDirty){
44713 for(p=pList; p; p=p->pDirty){
44720 for(p=pList; p; p=p->pDirty){
51761 for(p=pList; p; p=p->pDirty){
62988 for(p=pBackup; p; p=p->pNext){
63021 for(p=pBackup; p; p=p->pNext){
110385 for(p=pWith; p; p=p->pOuter){
112928 for(p=pList; p; p=p->pNext){
113322 for(p=pTrigger; p; p=p->pNext){
138594 for(p=pRoot; p; p=p->pLeft){
[all …]
/PHP-5.4/ext/standard/
H A Dvar_unserializer.c218 if (**p >= '0' && **p <= '9') { in unserialize_str()
220 } else if (**p >= 'a' && **p <= 'f') { in unserialize_str()
222 } else if (**p >= 'A' && **p <= 'F') { in unserialize_str()
231 (*p)++; in unserialize_str()
261 p++; in parse_iv2()
271 p++; in parse_iv2()
290 p++; in parse_uiv()
300 p++; in parse_uiv()
361 (*p)--; in process_nested_data()
384 datalen = parse_iv2((*p) + 2, p); in object_custom()
[all …]
H A Dvar_unserializer.re216 if (**p >= '0' && **p <= '9') {
218 } else if (**p >= 'a' && **p <= 'f') {
220 } else if (**p >= 'A' && **p <= 'F') {
229 (*p)++;
265 p++;
275 p++;
294 p++;
304 p++;
365 (*p)--;
388 datalen = parse_iv2((*p) + 2, p);
[all …]
H A Drand.c180 register php_uint32 *p = state; in php_mt_reload() local
183 for (i = N - M; i--; ++p) in php_mt_reload()
184 *p = twist(p[M], p[0], p[1]); in php_mt_reload()
185 for (i = M; --i; ++p) in php_mt_reload()
186 *p = twist(p[M-N], p[0], p[1]); in php_mt_reload()
187 *p = twist(p[M-N], p[0], state[0]); in php_mt_reload()
/PHP-5.4/Zend/tests/
H A Dbug32799.phpt8 if (!isset($GLOBALS['p'])) {
11 $GLOBALS['p']->c++; // no warning
12 print $GLOBALS['p']->c."\n"; // segfault
13 var_dump($GLOBALS['p']);
17 $p=new test;
18 $p=null; //destroy the object by a new assignment (segfault)
/PHP-5.4/ext/pcre/pcrelib/testdata/
H A Dtestinput10134 /^\p{Cc}/8
140 /^\p{Cf}/8
151 /^\p{Cn}/8
155 /^\p{Co}/8
160 /^\p{Cs}/8
165 /^\p{Ll}/8
171 /^\p{Lm}/8
176 /^\p{Lo}/8
182 /^\p{Lt}/8
188 /^\p{Lu}/8
[all …]
/PHP-5.4/ext/filter/tests/
H A D026.phpt8 var_dump(filter_var("<p>Let me <font color=\"#000000\">see</font> you <br /><b>Stripped</b> down to…
9 var_dump(filter_var("!@#$%^&*()><<>+_\"'<br><p /><li />", FILTER_SANITIZE_STRIPPED));
12 var_dump(filter_var("<p>Let me <font color=\"#000000\">see</font> you <br /><b>Stripped</b> down to…
13 var_dump(filter_var("!@#$%^&*()><<>+_\"'<br><p /><li />", FILTER_SANITIZE_STRIPPED, FILTER_FLAG_STR…
16 var_dump(filter_var("<p>Let me <font color=\"#000000\">see</font> you <br /><b>Stripped</b> down to…
17 var_dump(filter_var("!@#$%^&*()><<>+_\"'<br><p /><li />", FILTER_SANITIZE_STRIPPED, FILTER_FLAG_STR…

Completed in 581 milliseconds

12345678910>>...27