Home
last modified time | relevance | path

Searched refs:p (Results 226 – 250 of 775) sorted by relevance

12345678910>>...31

/PHP-7.1/ext/reflection/tests/
H A Dbug46064_2.phpt13 $p = new ReflectionObject($x);
14 var_dump($p->getProperty('test'));
29 $p = new reflectionobject($this);
30 var_dump($h = $p->getProperty('a'));
32 var_dump($p->getProperties());
/PHP-7.1/ext/phar/tests/
H A Dinvalid_alias.phpt11 $p = new Phar($fname);
13 $p->setAlias('hi/');
18 $p->setAlias('hi\\l');
24 $p->setAlias('hil;');
30 $p->setAlias(':hil');
H A Dinvalid_setstubalias.phpt12 $p = new Phar($fname);
14 $p['.phar/stub.php'] = 'hi';
19 $p['.phar/alias.txt'] = 'hi';
23 $p = new Phar($fname2);
25 $p['.phar/stub.php'] = 'hi';
30 $p['.phar/alias.txt'] = 'hi';
H A Dbug53872.phpt12 $p=new Phar('bug53872-phar.phar');
13 $p->buildFromDirectory(__DIR__ . "/bug53872/");
14 $p->setStub('<?php __HALT_COMPILER();?\>');
15 $p->compressFiles(Phar::GZ);
/PHP-7.1/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-7.1/Zend/tests/
H A Dbug44660.phpt9 echo $a->p;
12 $a->p = $s;
15 $a->p++;
18 $a->p =& $s;
21 $s =& $a->p;
24 $a->p[0] = $s;
/PHP-7.1/ext/simplexml/tests/
H A Dbug46003.phpt9 <p>Test</p>
19 var_dump(isset($x->p));
20 var_dump(isset($x->p->o));
/PHP-7.1/ext/zip/lib/
H A Dzip_name_locate.c54 const char *fn, *p; in _zip_name_locate() local
77 p = strrchr(fn, '/'); in _zip_name_locate()
78 if (p) in _zip_name_locate()
79 fn = p+1; in _zip_name_locate()
/PHP-7.1/ext/standard/tests/strings/
H A Dstrip_tags_variation10.phpt21 '<html>\t\r\v The quick brown fo\fx jumped over the lazy dog</p>',
24 '<p>This is a paragraph</p>',
28 $quotes = "<html><a><p><b><?php";
46 string(63) "<html>\t\r\v The quick brown fo\fx jumped over the lazy dog</p>"
52 string(26) "<p>This is a paragraph</p>"
/PHP-7.1/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-7.1/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"]=>
71 ["p"]=>
160 ["p"]=>
228 ["p"]=>
290 ["p"]=>
352 ["p"]=>
411 ["p"]=>
H A Darray_map_basic.phpt12 function multiply($p, $q) {
13 return ($p * $q);
16 function square($p) {
17 return ($p * $p);
/PHP-7.1/ext/phar/
H A Dphar_path_check.c27 const unsigned char *p = (const unsigned char*)*s; in phar_path_check() local
30 if (*len == 1 && *p == '.') { in phar_path_check()
33 } else if (*len == 2 && p[0] == '.' && p[1] == '.') { in phar_path_check()
39 #define YYCURSOR p in phar_path_check()
40 #define YYLIMIT p+*len in phar_path_check()
101 if ((p - (const unsigned char*)*s) - 1 != *len) in phar_path_check()
153 *len = (p - (const unsigned char*)*s) -1; in phar_path_check()
/PHP-7.1/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']));
/PHP-7.1/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-7.1/ext/dom/tests/
H A Dbug47430.phpt8 version="1.0"?><html><p><i>Hello</i></p><p><i>World!</i></p></html>';
/PHP-7.1/ext/xmlrpc/libxmlrpc/
H A Dqueue.c290 datanode *p; in Q_PushHead() local
293 if(p == NULL) in Q_PushHead()
341 node *p; in Q_PushTail() local
348 p = q->tail; in Q_PushTail()
435 datanode *p; in Q_PopTail() local
442 p = q->tail->prev; in Q_PopTail()
524 datanode *n, *p; in Q_Iter_Del() local
544 if(p) { in Q_Iter_Del()
545 p->next = n; in Q_Iter_Del()
548 if (p) { in Q_Iter_Del()
[all …]
/PHP-7.1/Zend/
H A Dzend_opcode.c164 while (p != end) { in zend_cleanup_user_class_data()
166 p++; in zend_cleanup_user_class_data()
185 while (p != end) { in zend_cleanup_internal_class_data()
187 p++; in zend_cleanup_internal_class_data()
261 while (p != end) { in destroy_zend_class()
263 p++; in destroy_zend_class()
271 while (p != end) { in destroy_zend_class()
273 p++; in destroy_zend_class()
316 while (p != end) { in destroy_zend_class()
318 p++; in destroy_zend_class()
[all …]
/PHP-7.1/ext/mbstring/oniguruma/enc/
H A Dcp1251.c111 const UChar* p = *pp; in cp1251_mbc_case_fold() local
113 *lower = ENC_CP1251_TO_LOWER_CASE(*p); in cp1251_mbc_case_fold()
176 const OnigUChar* p, const OnigUChar* end, OnigCaseFoldCodeItem items[]) in cp1251_get_case_fold_codes_by_str() argument
180 flag, p, end, items); in cp1251_get_case_fold_codes_by_str()
/PHP-7.1/ext/opcache/Optimizer/
H A Dzend_ssa.h145 …ays_inline zend_ssa_phi* zend_ssa_next_use_phi(const zend_ssa *ssa, int var, const zend_ssa_phi *p) in zend_ssa_next_use_phi() argument
147 if (p->pi >= 0) { in zend_ssa_next_use_phi()
148 return p->use_chains[0]; in zend_ssa_next_use_phi()
151 for (j = 0; j < ssa->cfg.blocks[p->block].predecessors_count; j++) { in zend_ssa_next_use_phi()
152 if (p->sources[j] == var) { in zend_ssa_next_use_phi()
153 return p->use_chains[j]; in zend_ssa_next_use_phi()

Completed in 35 milliseconds

12345678910>>...31