Home
last modified time | relevance | path

Searched refs:p (Results 726 – 750 of 937) sorted by relevance

1...<<21222324252627282930>>...38

/php-src/ext/phar/tests/tar/
H A Dbadchecksum.phpt17 $p = new PharData($fname);
H A Dlinks2.phpt23 $p = new PharData($fname);
/php-src/ext/standard/tests/serialize/
H A Dbug36424.phpt12 foreach (unserialize($s) as $p=>$v) {
13 $this->$p=$v;
H A Dserialization_objects_006.phpt7 var_dump($a->p);
/php-src/ext/dom/tests/bug79701/
H A Dset_attribute_ns_html.phpt9 <p>
12 </p>
/php-src/ext/json/tests/
H A Dpass001.1.phpt55 \" s p a c e d \" :[1,2 , 3
143 " s p a c e d " :[1,2 , 3
291 [" s p a c e d "]=>
472 [" s p a c e d "]=>
527 …ttp:\/\/www.JSON.org\/","comment":"\/\/ \/* <!-- --","# -- --> *\/":" "," s p a c e d ":[1,2,3,4,5…
529 …ttp:\/\/www.JSON.org\/","comment":"\/\/ \/* <!-- --","# -- --> *\/":" "," s p a c e d ":[1,2,3,4,5…
657 [" s p a c e d "]=>
838 [" s p a c e d "]=>
H A Dpass001.1_64bit.phpt59 \" s p a c e d \" :[1,2 , 3
147 " s p a c e d " :[1,2 , 3
295 [" s p a c e d "]=>
476 [" s p a c e d "]=>
531 …ttp:\/\/www.JSON.org\/","comment":"\/\/ \/* <!-- --","# -- --> *\/":" "," s p a c e d ":[1,2,3,4,5…
533 …ttp:\/\/www.JSON.org\/","comment":"\/\/ \/* <!-- --","# -- --> *\/":" "," s p a c e d ":[1,2,3,4,5…
661 [" s p a c e d "]=>
842 [" s p a c e d "]=>
/php-src/ext/standard/
H A Dcrypt_blowfish.c813 const char *p; in php_crypt_blowfish_rn() local
841 p = BF_crypt(test_key, buf.s, buf.o, sizeof(buf.o) - (1 + 1), 1); in php_crypt_blowfish_rn()
843 ok = (p == buf.o && in php_crypt_blowfish_rn()
844 !memcmp(p, buf.s, 7 + 22) && in php_crypt_blowfish_rn()
845 !memcmp(p + (7 + 22), test_hash, 31 + 1 + 1 + 1)); in php_crypt_blowfish_rn()
/php-src/ext/openssl/tests/
H A Dbug73478.phpt8 …'p' => base64_decode('3Pk6C4g5cuwOGZiaxaLOMQ4dN3F+jZVxu3Yjcxhm5h73Wi4niYsFf5iRwuJ6Y5w/KbYIFFgc07LK…
/php-src/Zend/tests/attributes/
H A D017_closure_scope.phpt17 return #[A1(self::class, self::FOO)] function (#[A1(self::class, self::FOO)] $p) { };
/php-src/ext/standard/tests/array/range/
H A Dbug24220.phpt48 string(1) "p"
/php-src/ext/pdo_dblib/tests/
H A Ddatetime_convert.phpt23 // assume default date format: %b %e %Y %I:%M:%S:%z%p
/php-src/ext/hash/
H A Dhash_haval.c245 #define PHP_HASH_HAVAL_INIT(p,b) \ argument
246 const php_hash_ops php_hash_##p##haval##b##_ops = { \
247 "haval" #b "," #p, \
248 (php_hash_init_func_t) PHP_##p##HAVAL##b##Init, \
256 PHP_HASH_API void PHP_##p##HAVAL##b##Init(PHP_HAVAL_CTX *context, ZEND_ATTRIBUTE_UNUSED HashTable *…
259 context->passes = p; context->output = b; \
260 context->Transform = PHP_##p##HAVALTransform; }
H A Dphp_hash.h116 #define PHP_HASH_HAVAL_OPS(p,b) extern const php_hash_ops php_hash_##p##haval##b##_ops; argument
/php-src/ext/spl/tests/
H A DarrayObject___construct_error1.phpt7 $a->p = 1;
/php-src/ext/intl/tests/
H A Dmsgfmt_format_intlcalendar.phpt28 Quinta-feira, 17 de Maio de 2012 5:35:36 p.m. WEST
/php-src/Zend/
H A Dzend_object_handlers.c391 if (p && (!(p->flags & ZEND_ACC_STATIC) || (flags & ZEND_ACC_STATIC))) { in zend_get_property_offset()
392 property_info = p; in zend_get_property_offset()
486 if (p) { in zend_get_property_info()
487 property_info = p; in zend_get_property_info()
758 if (EXPECTED(p->key == name) || in zend_std_read_property()
760 EXPECTED(p->key != NULL) && in zend_std_read_property()
762 retval = &p->val; in zend_std_read_property()
1901 zval *p; in zend_class_init_statics() local
1911 if (Z_TYPE_P(p) == IS_INDIRECT) { in zend_class_init_statics()
2179 if (EXPECTED(p->key == name) || in zend_std_has_property()
[all …]
H A Dzend_list.c221 zval *p = ZEND_HASH_ELEMENT(ht, i); in zend_close_rsrc_list() local
222 if (Z_TYPE_P(p) != IS_UNDEF) { in zend_close_rsrc_list()
223 zend_resource *res = Z_PTR_P(p); in zend_close_rsrc_list()
/php-src/sapi/fpm/tests/
H A Dfcgi.inc618 $p = 0;
620 while ($p != $length) {
622 $nlen = ord($data[$p++]);
625 $nlen |= (ord($data[$p++]) << 16);
626 $nlen |= (ord($data[$p++]) << 8);
627 $nlen |= (ord($data[$p++]));
629 $vlen = ord($data[$p++]);
633 $vlen |= (ord($data[$p++]) << 8);
634 $vlen |= (ord($data[$p++]));
636 $array[substr($data, $p, $nlen)] = substr($data, $p+$nlen, $vlen);
[all …]
/php-src/ext/mbstring/tests/
H A Dmb_ucfirst_lcfirst.phpt56 var_dump(mb_lcfirst("Đẹp quá!"));
91 string(12) "đẹp quá!"
/php-src/ext/standard/tests/array/
H A Duasort_variation7.phpt30 $array_arg = array("b" => "Banana", "m" => "Mango", "a" => "Apple", "p" => "Pineapple");
78 ["p"]=>
/php-src/ext/date/tests/
H A D009.phpt14 var_dump(strftime("%a %A %b %B %c %C %d %D %e %g %G %h %H %I %j %m %M %n %p %r %R %S %t %T %u %U %V…
19 var_dump(gmstrftime("%a %A %b %B %c %C %d %D %e %g %G %h %H %I %j %m %M %n %p %r %R %S %t %T %u %U …
H A D009_win32.phpt19 var_dump(strftime("%a %A %b %B %c %d %H %I %j %m %M %p %S %U %W %w %x %X %y %Y %Z %z %%", $t));
27 var_dump(gmstrftime("%a %A %b %B %c %d %H %I %j %m %M %p %S %U %W %w %x %X %y %Y %Z %z %%", $t));
/php-src/docs/source/core/data-structures/
H A Dzend_string.rst73 - - ``ZSTR_INIT(s, p)``
76 - - ``zend_string_init(s, l, p)``
79 - - ``zend_string_alloc(l, p)``
102 ``s`` = ``zend_string``, ``l`` = ``length``, ``p`` = ``persistent``.
144 - - ``zend_string_dup(s, p)``
151 - - ``zend_string_realloc(s, l, p)``
/php-src/sapi/apache2handler/
H A Dsapi_apache2.c440 static void php_apache_add_version(apr_pool_t *p) in php_apache_add_version() argument
443 ap_add_version_component(p, "PHP/" PHP_VERSION); in php_apache_add_version()
561 static void php_apache_ini_dtor(request_rec *r, request_rec *p) in php_apache_ini_dtor() argument
576 if (p) { in php_apache_ini_dtor()
577 ((php_struct *)SG(server_context))->r = p; in php_apache_ini_dtor()
763 void php_ap2_register_hook(apr_pool_t *p) in php_ap2_register_hook() argument

Completed in 63 milliseconds

1...<<21222324252627282930>>...38