Home
last modified time | relevance | path

Searched refs:a (Results 701 – 725 of 6311) sorted by relevance

1...<<21222324252627282930>>...253

/PHP-5.5/Zend/tests/
H A Dcall_static_005.phpt7 static function __callstatic($a, $b) {
8 var_dump($a);
12 $a = 'foo::';
13 $a();
H A Dconcat_001.phpt14 $a = array(1,2,3);
20 var_dump($a.$o);
21 var_dump($a.$s);
22 var_dump($a.$i);
23 var_dump($a.$d);
24 var_dump($a.$a);
26 var_dump($o.$a);
33 var_dump($s.$a);
38 var_dump($i.$a);
44 var_dump($d.$a);
H A Dbug42817.phpt2 Bug #42817 (clone() on a non-object does not result in a fatal error)
5 $a = clone(null);
6 array_push($a->b, $c);
H A Dcallable_type_hint_003.phpt6 function foo(callable $a, $b, callable $c) {
7 var_dump($a, $b, $c);
9 function bar(callable $a = null) {
10 var_dump($a);
H A Dclosure_024.phpt6 $a = 1;
7 $c = function($add) use(&$a) { return $a+$add; };
14 $a++;
H A Ddynamic_call_004.phpt6 $a::$b();
10 Notice: Undefined variable: a in %s on line %d
12 Fatal error: Class name must be a valid object or a string in %s on line %d
H A D027.phpt6 $a = 'b';
10 var_dump(${${$a}}('foo') == 'FOO');
12 $a = 'b';
17 var_dump(${${++$a}}('FOO') == 'foo');
H A Dbug27268.phpt9 return $this->a;
14 $A->a = array(1);
17 $clone->a = array();
23 [a] => Array
/PHP-5.5/ext/pcre/pcrelib/testdata/
H A Dtestinput7500 /(\x{23a}\x{23a}\x{23a})?\1/8i
501 \x{23a}\x{23a}\x{23a}\x{2c65}\x{2c65}
506 /(\x{23a}\x{23a}\x{23a})?\1/8i
507 \x{23a}\x{23a}\x{23a}\x{2c65}\x{2c65}\x{2c65}
512 /(\x{23a}\x{23a}\x{23a})\1/8i
513 \x{23a}\x{23a}\x{23a}\x{2c65}\x{2c65}
518 /(\x{23a}\x{23a}\x{23a})\1/8i
519 \x{23a}\x{23a}\x{23a}\x{2c65}\x{2c65}\x{2c65}
525 \x{2c65}\x{2c65}\x{23a}\x{23a}
530 /(\x{23a}\x{23a}\x{23a})\1Y/8i
[all …]
/PHP-5.5/tests/lang/
H A Dbug19943.phpt14 $a = "0123456789";
15 $a[9] = $a[0];
16 var_dump($a);
H A Dengine_assignExecutionOrder_003.phpt6 $a = "aa";
22 $c = ${$a=$b};
30 $a = array($a1,$a2,$a3);
44 $a[$i=1][++$i]();
46 $a = -1;
50 global $a;
51 return ++$a;
/PHP-5.5/ext/intl/tests/
H A Dcollator_sort_with_sort_keys.phpt61 array( 'a' , 'aaa', 'aa' ),
63 array( 'e' , 'c' , 'a' ),
64 array( 'd' , '' , ' a' ),
65 array( 'd ' , 'f ' , ' a' ),
66 array( 'a' , null , '3' ),
72 // Sort a non-ASCII array using ru_RU locale.
113 0 => 'a',
129 0 => 'a',
138 1 => ' a',
145 0 => ' a',
[all …]
H A Dcollator_sort_with_sort_keys_variant2.phpt61 array( 'a' , 'aaa', 'aa' ),
63 array( 'e' , 'c' , 'a' ),
64 array( 'd' , '' , ' a' ),
65 array( 'd ' , 'f ' , ' a' ),
66 array( 'a' , null , '3' ),
72 // Sort a non-ASCII array using ru_RU locale.
113 0 => 'a',
129 0 => 'a',
138 1 => ' a',
145 0 => ' a',
[all …]
H A Dcollator_compare.phpt15 * Converts comparison result to a character.
67 array( 'a' , 'abc' ),
68 array( 'a' , '' ),
70 array( 'a' , 'b' ),
72 array( 'ab' , 'a' ),
116 'a' < 'abc'
117 'a' > ''
119 'a' < 'b'
121 'ab' > 'a'
H A Dcollator_compare_variant2.phpt15 * Converts comparison result to a character.
67 array( 'a' , 'abc' ),
68 array( 'a' , '' ),
70 array( 'a' , 'b' ),
72 array( 'ab' , 'a' ),
116 'a' < 'abc'
117 'a' > ''
119 'a' < 'b'
121 'ab' > 'a'
/PHP-5.5/ext/pdo_sqlite/tests/
H A Ddebugdumpparams_001.phpt12 $x= $db->prepare('select :a, :b, ?');
13 $x->bindValue(':a', 1, PDO::PARAM_INT);
20 SQL: [16] select :a, :b, ?
22 Key: Name: [2] :a
24 name=[2] ":a"
/PHP-5.5/ext/reflection/tests/
H A DReflectionParameter_isDefault.phpt8 $a = new A;
9 $a->myprop = null;
11 $ro = new ReflectionObject($a);
21 $prop1 = new ReflectionProperty($a, 'defprop');
22 $prop2 = new ReflectionProperty($a, 'myprop');
H A DReflectionClass_getInterfaces_003.phpt10 $a = array(new stdclass);
11 $b =& $a[0];
12 var_dump($a);
15 $a[0]->x = 1;
16 var_dump($a);
23 $a = $rc->getInterfaces();
26 var_dump($a);
29 $a['I']->x = 1;
30 var_dump($a);
/PHP-5.5/Zend/tests/traits/
H A Dbug60217c.phpt7 public abstract function foo($a, $b = 0);
11 public abstract function foo($a);
17 public function foo($a) {
26 Fatal error: Declaration of TBroken2::foo($a) must be compatible with TBroken1::foo($a, $b = 0) in …
/PHP-5.5/ext/standard/tests/serialize/
H A Dbug43614.phpt8 var_dump($a = unserialize('a:2:{s:2:"10";i:1;s:2:"01";i:2;}'));
9 var_dump($a['10']);
10 var_dump($a[b'01']);
/PHP-5.5/ext/standard/tests/strings/
H A Dsprintf_variation22.phpt6 * Description: Return a formatted string
29 "%30c", "%[a-bA-B@#$&]", "%*c"
59 string(11) "a-bA-B@#$&]"
74 string(11) "a-bA-B@#$&]"
89 string(11) "a-bA-B@#$&]"
104 string(11) "a-bA-B@#$&]"
119 string(11) "a-bA-B@#$&]"
134 string(11) "a-bA-B@#$&]"
149 string(11) "a-bA-B@#$&]"
164 string(11) "a-bA-B@#$&]"
/PHP-5.5/ext/standard/tests/dir/
H A Dopendir_error2.phpt12 * Description: Open a directory and return a dir_handle
17 * Pass a non-existent directory as $path argument to opendir() to test behaviour
22 echo "\n-- Pass a non-existent absolute path: --\n";
26 echo "\n-- Pass a non-existent relative path: --\n";
34 -- Pass a non-existent absolute path: --
39 -- Pass a non-existent relative path: --
/PHP-5.5/ext/imap/tests/
H A Dimap_body_basic.phpt18 echo "Create a new mailbox for test\n";
42 Create a new mailbox for test
43 Create a temporary mailbox and add 1 msgs
46 %unicode|string%(%d) "1: this is a test message, please ignore%a"
47 %unicode|string%(%d) "1: this is a test message, please ignore%a"
/PHP-5.5/
H A DREADME.MAILINGLIST_RULES11 PHP is developed through the efforts of a large number of people.
12 Collaboration is a Good Thing(tm), and mailinglists lets us do this. Thus,
15 a. Make everybody happier, especially those responsible for developing PHP
20 c. Prevent you from making a fool of yourself in public.
29 2. Do not post when you are angry. Any post can wait a few hours. Review
30 your post after a good breather or a good nights sleep.
34 (http://www.php.net/mailing-lists.php). When in doubt ask a friend or
39 are faced with a lot of requests. Make sure that you have done your
43 PHP developers to implement a feature for you. For one it makes the
52 signatures to a maximum of 2 lines if at all necessary.
[all …]
/PHP-5.5/ext/spl/tests/
H A Dfixedarray_007.phpt7 $a = new SplFixedArray($b);
10 $a[1] = $a;
15 foreach ($a as $c) {

Completed in 81 milliseconds

1...<<21222324252627282930>>...253