Home
last modified time | relevance | path

Searched refs:b (Results 351 – 375 of 2383) sorted by relevance

1...<<11121314151617181920>>...96

/PHP-5.5/ext/mcrypt/tests/
H A Dmcrypt_ecb_3des_decrypt.phpt23 $data = b"This is the secret message which must be encrypted";
28 b'12345678',
29 b'12345678901234567890',
30 b'123456789012345678901234',
31 b'12345678901234567890123456'
41 b'1234',
42 b'12345678',
43 b'123456789'
51 $iv = b'12345678';
58 $key = b'1234567890123456';
H A Dmcrypt_encrypt_3des_cbc.phpt28 $data = b'This is the secret message which must be encrypted';
32 b'12345678',
33 b'12345678901234567890',
34 b'123456789012345678901234',
35 b'12345678901234567890123456'
39 b'1234',
40 b'12345678',
41 b'123456789'
45 $iv = b'12345678';
52 $key = b'1234567890123456';
/PHP-5.5/ext/oci8/tests/
H A Dcommit_001.phpt84 [%u|b%"ID"]=>
87 [%u|b%"VALUE"]=>
90 [%u|b%"BLOB"]=>
93 [%u|b%"CLOB"]=>
96 [%u|b%"STRING"]=>
103 [%u|b%"ID"]=>
114 [%u|b%"VALUE"]=>
125 [%u|b%"BLOB"]=>
136 [%u|b%"CLOB"]=>
147 [%u|b%"STRING"]=>
/PHP-5.5/Zend/tests/traits/
H A Dbug61998.phpt53 $b = new Bar();
54 $b->newFunc(); //from T1
55 $b->func(); //from Bar
56 $b->func2(); //from Bar
57 $b->newFunc2(); //from T2
58 $b->newFunc3(); //from T2
59 $b->func3(); //from Bar
/PHP-5.5/ext/mbstring/tests/
H A Dmb_split.phpt26 var_dump( mb_split( b" ", b"a b c d e f g" )
27 == mb_split( b"[[:space:]]", b"a\nb\tc\nd e f g" ) );
30 verify_split( b" ", b"a\tb\tc\td e\tf g", $i );
34 …verify_split( b"\xa1\xa1+", b"\xa1\xa1\xa1\xa2\xa2\xa1\xa1\xa1\xa1\xa1\xa1\xa2\xa2\xa1\xa1\xa1", $…
H A Dmb_ereg_replace_basic.phpt25 $string_ascii = b'abc def';
29 $result_1 = mb_ereg_replace(b'(.*)def', b'\\1 123', $string_ascii);
33 $result_2 = mb_ereg_replace(b'123', b'abc', $string_ascii);
38 $result_3 = mb_ereg_replace($regex1, b'\\1_____\\2', $string_mb);
43 $result_4 = mb_ereg_replace($regex2, b'_____', $string_mb);
/PHP-5.5/tests/lang/
H A DreturnByReference.006.phpt24 unset($a, $b);
26 $b = &returnFunctionCallByRef('returnConstantByValue');
28 var_dump($a, $b);
31 unset($a, $b);
33 $b = &returnFunctionCallByRef('returnConstantByRef');
35 var_dump($a, $b);
38 unset($a, $b);
40 $b = &returnFunctionCallByRef('returnVariableByRef');
42 var_dump($a, $b);
H A DforeachLoopObjects.001.phpt8 public $b = "Original b";
42 string(10) "Original b"
46 string(1) "b"
47 string(10) "Original b"
58 string(10) "Original b"
62 string(1) "b"
63 string(10) "Original b"
/PHP-5.5/Zend/tests/
H A D027.phpt6 $a = 'b';
7 $b = 'c';
12 $a = 'b';
13 $b = 'c';
H A Dbug39449.phpt16 $a->arr = array('a','b','c');
18 $b = &$a->arr;
19 $b[]= 'd';
33 1 => b
37 1 => b
H A Ddereference_003.phpt15 public function b() {
20 $b = &$a;
21 $b[] = true;
25 return $this->b();
33 var_dump($foo->b()[1][0]->a()[0]->x);
/PHP-5.5/ext/pcre/tests/
H A Dbug42945.phpt6 var_dump(preg_match_all('/\b/', "a'", $m, PREG_OFFSET_CAPTURE));
9 var_dump(preg_split('/\b/', "a'"));
10 var_dump(preg_split('/\b/', "a'", -1, PREG_SPLIT_OFFSET_CAPTURE));
11 var_dump(preg_split('/\b/', "a'", -1, PREG_SPLIT_NO_EMPTY));
12 var_dump(preg_split('/\b/', "a'", -1, PREG_SPLIT_NO_EMPTY|PREG_SPLIT_OFFSET_CAPTURE));
/PHP-5.5/ext/standard/tests/array/
H A D006.phpt9 $b = array("3" => "foo", "4" => "bar", "5" => "fubar");
10 $c = array("a" => "foo", "b" => "bar", "c" => "fubar");
18 echo array_pop($b), "\n";
19 var_dump($b);
47 ["b"]=>
H A Darray_chunk2.phpt5 $input_array = array('a', 'b', 'c', 'd', 'e');
30 string(1) "b"
57 string(1) "b"
81 string(1) "b"
102 string(1) "b"
123 string(1) "b"
138 string(1) "b"
H A Darray_intersect_key.phpt6 $b = array(0, 7, 2, -20, 11, 1100, -2500);
11 $b_f = array_flip($b);
49 var_dump(array_uintersect($a, $b, "comp_func"));
50 var_dump(array_intersect($a, $b, $c));
51 var_dump(array_uintersect($a, $b, $c, "comp_func"));
52 var_dump(array_intersect($a, $b, $c, $d));
53 var_dump(array_uintersect($a, $b, $c, $d, "comp_func"));
56 function comp_func($a, $b) {
57 if ($a === $b) return 0;
58 return ($a > $b)? 1:-1;
/PHP-5.5/ext/spl/tests/
H A Darray_022.phpt18 $b = clone $a;
19 $b['baz'] = 'Foo';
22 var_dump($b);
39 $b = clone $a;
40 $b['baz'] = 'Foo';
43 var_dump($b);
H A Dpqueue_001.phpt15 $pq->insert("b", 2);
28 $pq1->insert("b", 2);
41 $pq2->insert("b", 2);
54 $pq3->insert("b", 2);
66 2=>b
72 [data] => b
89 2=>b
/PHP-5.5/ext/standard/tests/strings/
H A Dsprintf_basic4.phpt15 $format1 = "%b";
16 $format2 = "%b %b";
17 $format3 = "%b %b %b";
/PHP-5.5/sapi/cgi/tests/
H A D006.phpt59 <b>Parse error</b>: %s expecting %s{%s in <b>%s006.test.php</b> on line <b>5</b><br />
/PHP-5.5/ext/phar/tests/
H A Dopen_for_write_existing_b.phpt19 $files['b.php'] = '<?php echo "This is b\n"; ?>';
20 $files['b/c.php'] = '<?php echo "This is b/c\n"; ?>';
29 $fp = fopen($pname . '/b/c.php', 'wb');
32 include $pname . '/b/c.php';
39 Warning: fopen(phar://%sopen_for_write_existing_b.phar.php/b/c.php): failed to open stream: phar er…
44 This is b/c
H A Dopen_for_write_existing_b_5_2.phpt17 $files['b.php'] = '<?php echo "This is b\n"; ?>';
18 $files['b/c.php'] = '<?php echo "This is b/c\n"; ?>';
27 $fp = fopen($pname . '/b/c.php', 'wb');
30 include $pname . '/b/c.php';
37 Warning: fopen(phar://%sopen_for_write_existing_b_5_2.phar.php/b/c.php): failed to open stream: pha…
42 This is b/c
/PHP-5.5/ext/phar/tests/tar/
H A Dopen_for_write_existing_c.phpt23 $files['b.php'] = '<?php echo "This is b\n"; ?>';
24 $files['b/c.php'] = '<?php echo "This is b/c\n"; ?>';
33 $fp = fopen($alias . '/b/c.php', 'wb');
37 include $alias . '/b/c.php';
46 Warning: fopen(phar://%sopen_for_write_existing_c.phar.tar/b/c.php): failed to open stream: phar er…
51 This is b/c
/PHP-5.5/ext/phar/tests/zip/
H A Dopen_for_write_existing_c_5_2.phpt21 $files['b.php'] = '<?php echo "This is b\n"; ?>';
22 $files['b/c.php'] = '<?php echo "This is b/c\n"; ?>';
31 $fp = fopen($alias . '/b/c.php', 'wb');
34 include $alias . '/b/c.php';
41 Warning: fopen(phar://%sopen_for_write_existing_c_5_2.phar.zip/b/c.php): failed to open stream: pha…
46 This is b/c
/PHP-5.5/Zend/
H A Dzend_ptr_stack.h58 static zend_always_inline void zend_ptr_stack_3_push(zend_ptr_stack *stack, void *a, void *b, void …
66 *(stack->top_element++) = b;
72 static zend_always_inline void zend_ptr_stack_2_push(zend_ptr_stack *stack, void *a, void *b) in zend_ptr_stack_2_push() argument
80 *(stack->top_element++) = b; in zend_ptr_stack_2_push()
85 static zend_always_inline void zend_ptr_stack_3_pop(zend_ptr_stack *stack, void **a, void **b, void… in zend_ptr_stack_3_pop() argument
88 *b = *(--stack->top_element); in zend_ptr_stack_3_pop()
93 static zend_always_inline void zend_ptr_stack_2_pop(zend_ptr_stack *stack, void **a, void **b) in zend_ptr_stack_2_pop() argument
96 *b = *(--stack->top_element); in zend_ptr_stack_2_pop()
/PHP-5.5/ext/reflection/tests/
H A DReflectionParameter_invalidMethodInConstructor.phpt8 new ReflectionParameter (array ('A', 'b'), 0);
13 new ReflectionParameter (array ('C', 'b'), 0);
18 new ReflectionParameter (array (new C, 'b'), 0);
29 Method C::b() does not exist
30 Method C::b() does not exist

Completed in 38 milliseconds

1...<<11121314151617181920>>...96