Home
last modified time | relevance | path

Searched refs:b (Results 51 – 75 of 2165) sorted by relevance

12345678910>>...87

/PHP-5.3/ext/pdo_mysql/tests/
H A Dpdo_mysql_stmt_nextrowset.phpt127 [%u|b%"id"]=>
132 [%u|b%"id"]=>
137 [%u|b%"id"]=>
144 [%u|b%"id"]=>
151 [%u|b%"id"]=>
158 [%u|b%"id"]=>
176 [%u|b%"id"]=>
181 [%u|b%"id"]=>
186 [%u|b%"id"]=>
193 [%u|b%"id"]=>
[all …]
/PHP-5.3/ext/reflection/tests/
H A DReflectionClass_getProperties_001.phpt43 [%u|b%"name"]=>
45 [%u|b%"class"]=>
50 [%u|b%"name"]=>
52 [%u|b%"class"]=>
60 [%u|b%"name"]=>
62 [%u|b%"class"]=>
67 [%u|b%"name"]=>
77 [%u|b%"name"]=>
84 [%u|b%"name"]=>
94 [%u|b%"name"]=>
[all …]
/PHP-5.3/ext/mysql/tests/
H A Dmysql_fetch_field.phpt160 [%u|b%"name"]=>
164 [%u|b%"def"]=>
178 [%u|b%"blob"]=>
180 [%u|b%"type"]=>
188 [%u|b%"name"]=>
192 [%u|b%"def"]=>
206 [%u|b%"blob"]=>
208 [%u|b%"type"]=>
221 [%u|b%"name"]=>
225 [%u|b%"def"]=>
[all …]
/PHP-5.3/Zend/tests/
H A Dbug35163_3.phpt6 $a->b = array(1);
7 $a->b[] =& $a->b;
8 $a->b[] =& $a->b;
9 $a->b[0] = 2;
11 $a->b = null;
16 ["b"]=>
H A Dobjects_001.phpt9 $b = new Bar;
11 var_dump($b == NULL);
12 var_dump($b != NULL);
13 var_dump($b == true);
17 var_dump($b == "");
18 var_dump($b != "");
19 var_dump($b == 0);
20 var_dump($b != 0);
21 var_dump($b == 1);
22 var_dump($b != 1);
[all …]
H A Dbug38469.phpt8 $b = array(array());
9 $b[0][0] = $b;
10 var_dump($b);
16 $b = array(array());
17 $b[0][0] = $b;
18 var_dump($b);
/PHP-5.3/ext/mysqli/tests/
H A Dmysqli_result_references_mysqlnd.phpt63 [%u|b%"row_ref"]=>
67 [%u|b%"id"]=>
69 [%u|b%"label"]=>
72 [%u|b%"id_ref"]=>
74 [%u|b%"id_copy"]=>
81 [%u|b%"row_ref"]=>
85 [%u|b%"id"]=>
90 [%u|b%"id_ref"]=>
99 [%u|b%"id"]=>
106 [%u|b%"id"]=>
[all …]
H A Dmysqli_fetch_field_oo.phpt71 [%u|b%"name"]=>
75 [%u|b%"table"]=>
79 [%u|b%"def"]=>
81 [%u|b%"db"]=>
91 [%u|b%"flags"]=>
93 [%u|b%"type"]=>
99 [%u|b%"name"]=>
103 [%u|b%"table"]=>
107 [%u|b%"def"]=>
109 [%u|b%"db"]=>
[all …]
H A Dmysqli_fetch_assoc_no_alias_utf8.phpt93 [%u|b%"id"]=>
95 [%u|b%"име"]=>
101 [%u|b%"id"]=>
103 [%u|b%"име"]=>
109 [%u|b%"id"]=>
117 [%u|b%"id"]=>
125 [%u|b%"id"]=>
133 [%u|b%"id"]=>
141 [%u|b%"id"]=>
149 [%u|b%"id"]=>
[all …]
/PHP-5.3/ext/phar/tests/
H A D028.phpt16 $files['a.php'] = '<?php echo "This is a\n"; include "'.$pname.'/b.php"; ?>';
17 $files['b.php'] = '<?php echo "This is b\n"; include "'.$pname.'/b/c.php"; ?>';
18 $files['b/c.php'] = '<?php echo "This is b/c\n"; include "'.$pname.'/b/d.php"; ?>';
19 $files['b/d.php'] = '<?php echo "This is b/d\n"; include "'.$pname.'/e.php"; ?>';
38 This is b
39 This is b/c
40 This is b/d
44 This is b
45 This is b/c
46 This is b/d
H A Dphar_ctx_001.phpt17 $files['b'] = 'b';
26 var_dump(file_get_contents($pname . '/b'));
27 var_dump($phar['b']->isCompressed());
35 file_put_contents($pname . '/b', b'new b', 0, $context);
43 var_dump($phar['b']->isCompressed());
44 var_dump($phar['b']->getMetaData());
58 var_dump($phar['b']->isCompressed());
59 var_dump($phar['b']->getMetaData());
69 string(1) "b"
76 string(5) "new b"
[all …]
H A Drefcount1.phpt14 $file = b"<?php __HALT_COMPILER(); ?>";
18 $files['b.php'] = '<?php echo "This is b\n"; ?>';
19 $files['b/c.php'] = '<?php echo "This is b/c\n"; ?>';
23 fwrite($fp, b"extra");
27 $b = fopen($pname . '/b/c.php', 'rb');
28 $a = $p['b/c.php'];
30 var_dump(fread($b, 20));
31 rewind($b);
33 unlink($pname . '/b/c.php');
35 var_dump(fread($b, 20));
[all …]
H A Ddelete_in_phar.phpt16 $files['b.php'] = '<?php echo "This is b\n"; ?>';
17 $files['b/c.php'] = '<?php echo "This is b/c\n"; ?>';
21 include $pname . '/b.php';
22 include $pname . '/b/c.php';
23 unlink($pname . '/b/c.php');
28 include $pname . '/b.php';
29 include $pname . '/b/c.php';
37 This is b
38 This is b/c
41 This is b
[all …]
H A Ddelete_in_phar_b.phpt16 $files['b.php'] = '<?php echo "This is b\n"; ?>';
17 $files['b/c.php'] = '<?php echo "This is b/c\n"; ?>';
21 include $pname . '/b.php';
22 include $pname . '/b/c.php';
23 unlink($pname . '/b/c.php');
28 include $pname . '/b.php';
29 include $pname . '/b/c.php';
37 This is b
38 This is b/c
43 This is b
[all …]
H A D026.phpt14 $files['a.php'] = '<?php echo "This is a\n"; require \''.$pname.'/b.php\'; ?>';
15 $files['b.php'] = '<?php echo "This is b\n"; require \''.$pname.'/b/c.php\'; ?>';
16 $files['b/c.php'] = '<?php echo "This is b/c\n"; require \''.$pname.'/b/d.php\'; ?>';
17 $files['b/d.php'] = '<?php echo "This is b/d\n"; require \''.$pname.'/e.php\'; ?>';
30 This is b
31 This is b/c
32 This is b/d
/PHP-5.3/ext/standard/tests/array/
H A Dbug25708.phpt21 $b = NULL;
24 debug_zval_dump($a, $b, $GLOBALS['a'], $GLOBALS['b']);
28 $b = &$GLOBALS['b'];
32 debug_zval_dump($a, $b, $GLOBALS['a'], $GLOBALS['b']);
35 $b = &$GLOBALS['b'];
36 debug_zval_dump($a, $b, $GLOBALS['a'], $GLOBALS['b']);
44 $c = $b;
45 debug_zval_dump($b, $GLOBALS['b'], $c);
47 $b = 'x';
58 $b = 'ok';
[all …]
/PHP-5.3/ext/simplexml/tests/
H A Dbug44478.phpt8 $xml_element->node1 = 'a &#38; b';
10 $xml_element->node1 = 'a &#38; b';
12 $xml_element->addChild('node2','a &#38; b');
14 $xml_element->node2 = 'a & b';
22 a &#38; b
23 a &#38; b
24 a & b
25 a & b
27 <root><node1>a &amp;#38; b</node1><node2>a &amp; b</node2></root>
/PHP-5.3/ext/hash/
H A Dhash_sha.c184 (b) = ROTATE_LEFT((b), 30); \
189 (b) = ROTATE_LEFT((b), 30); \
194 (b) = ROTATE_LEFT((b), 30); \
199 (b) = ROTATE_LEFT((b), 30); \
318 state[1] += b; in SHA1Transform()
431 #define ROTR32(b,x) ((x >> b) | (x << (32 - b))) argument
432 #define ROTR64(b,x) ((x >> b) | (x << (64 - b))) argument
433 #define SHR(b, x) (x >> b) argument
501 d = c; c = b; b = a; a = T1 + T2; in SHA256Transform()
505 state[1] += b; in SHA256Transform()
[all …]
/PHP-5.3/ext/standard/tests/strings/
H A Dstripslashes_variation4.phpt21 array("f\\'oo", "b\\'ar", array("fo\\'o", "b\\'ar")),
23 array("f\\'oo", "b\\'ar", array("fo\\'o", "b\\'ar", array(""))),
24 array("f\\'oo", "b\\'ar", array("fo\\'o", "b\\'ar", array("fo\\'o", "b\\'ar")))
69 string(4) "b'ar"
75 string(4) "b'ar"
84 string(4) "b'ar"
97 string(4) "b'ar"
103 string(4) "b'ar"
117 string(4) "b'ar"
123 string(4) "b'ar"
[all …]
/PHP-5.3/ext/phar/tests/tar/
H A Ddelete_in_phar.phpt16 $phar['b.php'] = '<?php echo "This is b\n"; ?>';
17 $phar['b/c.php'] = '<?php echo "This is b/c\n"; ?>';
22 include $alias . '/b.php';
23 include $alias . '/b/c.php';
24 unlink($alias . '/b/c.php');
30 include $alias . '/b.php';
31 include $alias . '/b/c.php';
39 This is b
40 This is b/c
43 This is b
[all …]
H A Ddelete_in_phar_b.phpt16 $phar['b.php'] = '<?php echo "This is b\n"; ?>';
17 $phar['b/c.php'] = '<?php echo "This is b/c\n"; ?>';
23 include $alias . '/b.php';
24 include $alias . '/b/c.php';
25 unlink($alias . '/b/c.php');
31 include $alias . '/b.php';
32 include $alias . '/b/c.php';
40 This is b
41 This is b/c
46 This is b
[all …]
/PHP-5.3/ext/phar/tests/zip/
H A Ddelete_in_phar.phpt16 $phar['b.php'] = '<?php echo "This is b\n"; ?>';
17 $phar['b/c.php'] = '<?php echo "This is b/c\n"; ?>';
22 include $alias . '/b.php';
23 include $alias . '/b/c.php';
24 unlink($alias . '/b/c.php');
29 include $alias . '/b.php';
30 include $alias . '/b/c.php';
38 This is b
39 This is b/c
42 This is b
[all …]
H A Ddelete_in_phar_b.phpt16 $phar['b.php'] = '<?php echo "This is b\n"; ?>';
17 $phar['b/c.php'] = '<?php echo "This is b/c\n"; ?>';
23 include $alias . '/b.php';
24 include $alias . '/b/c.php';
25 unlink($alias . '/b/c.php');
30 include $alias . '/b.php';
31 include $alias . '/b/c.php';
39 This is b
40 This is b/c
45 This is b
[all …]
/PHP-5.3/ext/spl/tests/
H A Dbug53144.phpt9 $b = new SplObjectStorage();
10 $b[$o1] = "bar";
11 $b[$o2] = "baz";
13 var_dump(count($b));
14 $b->removeAll($b);
15 var_dump(count($b));
/PHP-5.3/ext/standard/tests/serialize/
H A Dbug28325.phpt6 public $b;
8 class b {
15 $a->b = new b();
16 $a->b->c = new c();
17 $a->b->c->d = $a;
22 ["b"]=>
23 object(b)#%d (1) {

Completed in 50 milliseconds

12345678910>>...87