Home
last modified time | relevance | path

Searched refs:same (Results 1 – 25 of 366) sorted by relevance

12345678910>>...15

/PHP-8.0/tests/run-test/
H A Dtest007.phpt27 function same($a,$b) {
36 same(".",dirname("d:\\foo\\bar.inc"));
37 same(".",dirname("c:\\foo"));
38 same(".",dirname("c:\\"));
39 same(".",dirname("c:"));
41 same("d:\\foo",dirname("d:\\foo\\bar.inc"));
42 same("c:\\",dirname("c:\\foo"));
43 same("c:\\",dirname("c:\\"));
44 same("c:",dirname("c:"));
/PHP-8.0/ext/intl/tests/
H A Dtimezone_hasSameRules_basic.phpt15 echo "Europe/Lisbon has same rules as itself:\n";
18 echo "\nEurope/Lisbon has same rules as Portugal:\n";
21 echo "\nEurope/Lisbon has same rules as Atlantic/Azores:\n";
26 Europe/Lisbon has same rules as itself:
29 Europe/Lisbon has same rules as Portugal:
32 Europe/Lisbon has same rules as Atlantic/Azores:
/PHP-8.0/ext/standard/tests/array/
H A Dextract_variation7.phpt6 /* EXTR_PREFIX_ALL called twice with same prefix string */
7 echo "\n*** Testing for EXTR_PREFIX_ALL called twice with same prefix string ***\n";
9 var_dump ( extract($a, EXTR_PREFIX_ALL, "same"));
13 var_dump ( extract($b, EXTR_PREFIX_ALL, "same"));
19 *** Testing for EXTR_PREFIX_ALL called twice with same prefix string ***
/PHP-8.0/tests/classes/
H A Dvisibility_000a.phpt2 ZE2 A redeclared method must have the same or higher visibility
14 class same extends father {
16 // overload fn with same visibility
24 class fail extends same {
31 Fatal error: Access level to fail::f0() must be public (as in class same) in %s on line 22
H A Dvisibility_000b.phpt2 ZE2 A redeclared method must have the same or higher visibility
14 class same extends father {
16 // overload fn with same visibility
24 class fail extends same {
31 Fatal error: Access level to fail::f0() must be public (as in class same) in %s on line 22
H A Dvisibility_001a.phpt2 ZE2 A redeclared method must have the same or higher visibility
14 class same extends father {
16 // overload fn with same visibility
24 class fail extends same {
31 Fatal error: Access level to fail::f1() must be public (as in class same) in %s on line 22
H A Dvisibility_001b.phpt2 ZE2 A redeclared method must have the same or higher visibility
14 class same extends father {
16 // overload fn with same visibility
24 class fail extends same {
31 Fatal error: Access level to fail::f1() must be public (as in class same) in %s on line 22
H A Dvisibility_002a.phpt2 ZE2 A redeclared method must have the same or higher visibility
14 class same extends father {
16 // overload fn with same visibility
24 class fail extends same {
31 Fatal error: Access level to fail::f2() must be public (as in class same) in %s on line 22
H A Dvisibility_002b.phpt2 ZE2 A redeclared method must have the same or higher visibility
14 class same extends father {
16 // overload fn with same visibility
24 class fail extends same {
31 Fatal error: Access level to fail::f2() must be public (as in class same) in %s on line 22
H A Dvisibility_003b.phpt2 ZE2 A redeclared method must have the same or higher visibility
14 class same extends father {
16 // overload fn with same visibility
24 class fail extends same {
31 Fatal error: Access level to fail::f3() must be protected (as in class same) or weaker in %s on lin…
H A Dvisibility_003c.phpt2 ZE2 A redeclared method must have the same or higher visibility
14 class same extends father {
16 // overload fn with same visibility
24 class fail extends same {
H A Dvisibility_004c.phpt2 ZE2 A redeclared method must have the same or higher visibility
14 class same extends father {
16 // overload fn with same visibility
24 class fail extends same {
H A Dvisibility_000c.phpt2 ZE2 A redeclared method must have the same or higher visibility
14 class same extends father {
16 // overload fn with same visibility
24 class fail extends same {
H A Dvisibility_001c.phpt2 ZE2 A redeclared method must have the same or higher visibility
14 class same extends father {
16 // overload fn with same visibility
24 class fail extends same {
H A Dvisibility_002c.phpt2 ZE2 A redeclared method must have the same or higher visibility
14 class same extends father {
16 // overload fn with same visibility
24 class fail extends same {
H A Dvisibility_003a.phpt2 ZE2 A redeclared method must have the same or higher visibility
14 class same extends father {
16 // overload fn with same visibility
24 class fail extends same {
H A Dvisibility_004a.phpt2 ZE2 A redeclared method must have the same or higher visibility
14 class same extends father {
16 // overload fn with same visibility
24 class fail extends same {
H A Dvisibility_004b.phpt2 ZE2 A redeclared method must have the same or higher visibility
14 class same extends father {
16 // overload fn with same visibility
24 class fail extends same {
/PHP-8.0/Zend/tests/traits/
H A Dbug60369.phpt7 static $same = true;
12 public $same = true;
17 Fatal error: Properties and PropertiesTrait define the same property ($same) in the composition of …
/PHP-8.0/Zend/tests/
H A Dbug74269.phpt7 public $same = true;
13 public $same = 2;
17 Fatal error: PropertiesExample and PropertiesTrait define the same property ($same) in the composit…
H A Duse_no_eval_conflict.phpt6 /* It is important that these two eval()s occur on the same line,
7 * as this forces them to have the same filename. */
/PHP-8.0/ext/standard/tests/file/
H A Dsymlink_link_linkinfo_is_link_variation8.phpt2 Test symlink(), linkinfo(), link() and is_link() functions : usage variations - try link with same
14 /* creating link to a file in different dir with the same name as the file */
15 echo "\n*** Create hard link in different directory with same filename ***\n";
37 echo "\n*** Create soft link in different directory with same filename ***\n";
60 *** Create hard link in different directory with same filename ***
66 *** Create soft link in different directory with same filename ***
H A Drename_variation3-win32.phpt18 /* test rename() by trying to rename an existing file/dir to the same name
28 echo "\n-- Renaming file to same file name --\n";
32 echo "\n-- Renaming directory to same directory name --\n";
60 -- Renaming file to same file name --
64 -- Renaming directory to same directory name --
H A Drename_variation5.phpt12 /* test rename() by trying to rename an existing file/dir/link to the same name
26 echo "\n-- Renaming link to same link name --\n";
29 echo "\n-- Renaming file to same file name --\n";
32 echo "\n-- Renaming directory to same directory name --\n";
62 -- Renaming link to same link name --
65 -- Renaming file to same file name --
68 -- Renaming directory to same directory name --
H A Dsymlink_link_linkinfo_is_link_variation3.phpt47 // checking that size of symlink remains same
49 echo "\nSoft link size remains same \n";
69 // checking that size of symlink remains same
71 echo "\nSoft link size remains same \n";
91 // checking that size of symlink remains same
93 echo "\nSoft link size remains same \n";
115 Soft link size remains same
124 Soft link size remains same
133 Soft link size remains same

Completed in 27 milliseconds

12345678910>>...15