Home
last modified time | relevance | path

Searched refs:show (Results 1 – 25 of 123) sorted by relevance

12345

/PHP-7.3/ext/reflection/tests/
H A Dstatic_properties_002.phpt32 base::show();
33 derived::show();
37 base::show();
38 derived::show();
42 base::show();
43 derived::show();
51 base::show(2)
52 derived::show(2)
54 base::show(3)
55 derived::show(2)
[all …]
/PHP-7.3/tests/classes/
H A Dprivate_002.phpt7 private static function show() {
8 echo "Call pass::show()\n";
12 pass::show();
19 public static function show() {
20 echo "Call fail::show()\n";
21 pass::show();
25 fail::show();
30 Call pass::show()
31 Call fail::show()
33 Fatal error: Uncaught Error: Call to private method pass::show() from context 'fail' in %s:%d
[all …]
H A Dprotected_002.phpt7 protected static function show() {
8 echo "Call pass::show()\n";
12 pass::show();
19 public static function show() {
20 echo "Call fail::show()\n";
21 pass::show();
25 fail::show();
30 Call pass::show()
31 Call fail::show()
33 Fatal error: Uncaught Error: Call to protected method pass::show() from context 'fail' in %s:%d
[all …]
H A Dfinal.phpt7 function show() {
8 echo "Call to function first::show()\n";
13 $t->show();
16 final function show() {
17 echo "Call to function second::show()\n";
22 $t2->show();
27 Call to function first::show()
28 Call to function second::show()
H A Dprivate_006.phpt6 private static function show() {
7 echo "Call show()\n";
11 first::show();
28 static function show() { // cannot be redeclared
29 echo "Call show()\n";
36 Call show()
37 Call show()
38 Call show()
H A Dprivate_006b.phpt7 private function show() {
8 echo "Call show()\n";
12 $this->show();
26 private function show() {
27 echo "Call show()\n";
37 Call show()
38 Call show()
H A Dstatic_mix_1.phpt7 static function show() {
8 echo "Call to function pass::show()\n";
13 function show() {
14 echo "Call to function fail::show()\n";
18 pass::show();
19 fail::show();
24 Fatal error: Cannot make static method pass::show() non static in class fail in %s on line %d
H A Dstatic_mix_2.phpt7 function show() {
8 echo "Call to function pass::show()\n";
13 static function show() {
14 echo "Call to function fail::show()\n";
19 $t->show();
20 fail::show();
25 Fatal error: Cannot make non static method pass::show() static in class fail in %s on line %d
H A Dabstract.phpt7 abstract function show();
11 function show() {
12 echo "Call to function show()\n";
15 parent::show();
20 $t->show();
26 Call to function show()
28 Fatal error: Uncaught Error: Cannot call abstract method fail::show() in %s:%d
H A Dabstract_class.phpt7 abstract function show();
11 function show() {
12 echo "Call to function show()\n";
17 $t2->show();
20 $t->show();
25 Call to function show()
H A Dprivate_001.phpt7 private static function show() {
8 echo "Call show()\n";
12 pass::show();
17 pass::show();
22 Call show()
24 Fatal error: Uncaught Error: Call to private method pass::show() from context '' in %s:%d
H A Dabstract_static.phpt8 static function show();
13 static function show() {
14 echo "Call to function show()\n";
18 pass::show();
27 fail::show();
32 Call to function show()
H A Dprivate_004.phpt7 private static function show() {
8 echo "Call show()\n";
12 pass::show();
18 fail::show();
28 Call show()
30 Fatal error: Uncaught Error: Call to private method pass::show() from context 'fail' in %s:%d
H A Dprivate_005.phpt7 private static function show() {
8 echo "Call show()\n";
12 pass::show();
18 pass::show();
28 Call show()
30 Fatal error: Uncaught Error: Call to private method pass::show() from context 'fail' in %s:%d
H A Dprivate_004b.phpt7 private function show() {
8 echo "Call show()\n";
12 $this->show();
18 $this->show();
31 Call show()
33 Fatal error: Uncaught Error: Call to private method pass::show() from context 'fail' in %s:%d
H A Dprivate_003.phpt7 private static function show() {
8 echo "Call show()\n";
12 pass::show();
22 pass::show();
32 Call show()
34 Fatal error: Uncaught Error: Call to private method pass::show() from context 'fail' in %s:%d
H A Dprivate_003b.phpt7 private function show() {
8 echo "Call show()\n";
12 $this->show();
22 $this->show();
33 Call show()
35 Fatal error: Uncaught Error: Call to private method pass::show() from context 'fail' in %s:%d
H A Dprivate_redeclare.phpt6 private function show() {
10 $this->show();
18 function show() {
23 $this->show();
25 parent::show();
38 Fatal error: Uncaught Error: Call to private method base::show() from context 'derived' in %s:%d
H A Dfinal_redeclare.phpt7 final function show() {
8 echo "Call to function pass::show()\n";
15 function show() {
16 echo "Call to function fail::show()\n";
23 Fatal error: Cannot override final method pass::show() in %s on line %d
H A Dabstract_redeclare.phpt7 function show() {
8 echo "Call to function show()\n";
13 abstract function show();
19 … therefore be declared abstract or implement the remaining methods (fail::show) in %sabstract_rede…
H A Dinterface_and_extends.phpt8 function show();
13 function show() {
19 $o->show();
H A Dclone_004.phpt18 public function show() {
27 $o1->show();
31 $o2->show();
36 $o2->show();
/PHP-7.3/ext/spl/tests/
H A Diterator_045.phpt47 function show()
84 $it->show();
86 $it->show();
88 $it->show();
90 $it->show();
92 $it->show();
113 MyCachingIterator::show()
125 MyCachingIterator::show()
133 MyCachingIterator::show()
148 MyCachingIterator::show()
[all …]
H A Dbug45614.phpt2 SPL: Bug#45614 (ArrayIterator can show 1st private prop of wrapped object)
28 echo "\n--> Rewind and show the first two items:\n";
32 echo "\n--> Invalidate current position and show the first two items:\n";
37 echo "\n--> Rewind, seek and show the first two items:\n";
47 --> Rewind and show the first two items:
51 --> Invalidate current position and show the first two items:
55 --> Rewind, seek and show the first two items:
/PHP-7.3/ext/mysqli/tests/
H A Dbug52082.phpt17 var_dump($link->query("show variables like 'character_set_client'")->fetch_row());
18 var_dump($link->query("show variables like 'character_set_connection'")->fetch_row());
20 var_dump($link->query("show variables like 'character_set_client'")->fetch_row());
21 var_dump($link->query("show variables like 'character_set_connection'")->fetch_row());

Completed in 37 milliseconds

12345