Home
last modified time | relevance | path

Searched refs:original (Results 26 – 50 of 139) sorted by relevance

123456

/PHP-8.3/ext/reflection/tests/
H A DReflectionClass_getStaticPropertyValue_001.phpt9 static private $privateOverridden = "original private";
10 static protected $protectedOverridden = "original protected";
11 static public $publicOverridden = "original public";
53 string(16) "original private"
55 string(18) "original protected"
56 string(15) "original public"
H A DReflectionClass_setStaticPropertyValue_001.phpt9 static private $privateOverridden = "original private";
10 static protected $protectedOverridden = "original protected";
11 static public $publicOverridden = "original public";
/PHP-8.3/ext/oci8/tests/
H A Dbind_rowid.phpt27 "insert into rid_tab (id, address) values (1, 'original text #1')",
28 "insert into rid_tab (id, address) values (2, 'original text #2')"
71 string(16) "original text #1"
75 string(16) "original text #2"
84 string(16) "original text #2"
/PHP-8.3/ext/standard/tests/file/
H A Dstream_rfc2397_003.phpt21 foreach($streams as $original => $stream)
23 if (is_string($original)) {
24 var_dump(file_get_contents(__DIR__ . '/' . $original) == file_get_contents($stream));
/PHP-8.3/tests/classes/
H A Dstatic_properties_004.phpt5 class C { public static $p = 'original'; }
23 string(8) "original"
24 string(8) "original"
25 string(8) "original"
/PHP-8.3/ext/date/tests/
H A Dbug75035.phpt19 $original = $d->format('Y-m-d H:i:s');
21 if ($original !== $serializedUnserialized) {
22 var_dump('[' . ($extreme >> $i) . '] ' . $original . ' => ' . $serializedUnserialized);
/PHP-8.3/ext/pdo_mysql/tests/
H A Dbug_50323.phpt17 function changeDSN($original, $new_options) {
19 $dsn = substr($original,
20 strpos($original, ':') + 1,
21 strlen($original));
/PHP-8.3/ext/gd/tests/
H A Dimagegetclip_basic.phpt8 echo '=== original ===', PHP_EOL;
15 === original ===
H A Dimagecopyresampled_basic.phpt29 $percent = 0.5; // new image 50% of original
31 echo "Size of original: width=". $width . " height=" . $height . "\n";
60 Size of original: width=400 height=300
/PHP-8.3/ext/standard/tests/array/
H A Dextract_variation10.phpt5 $a = array('foo' => 'original.foo');
13 string(12) "original.foo"
H A Dbug44182.phpt5 $a = array('foo' => 'original.foo');
17 string(%d) "original.foo"
H A Darray_shuffle_basic.phpt37 $original = $bigarray;
39 $diffarray = array_diff_assoc($original, $bigarray);
44 echo "shuffled array seems to be similar to original\n";
45 var_dump($original);
H A Dbug70910.phpt5 $var = 'original value';
/PHP-8.3/ext/curl/tests/
H A Dcurl_escape.phpt11 $original = curl_unescape($a, $escaped);
12 var_dump($escaped, $original);
/PHP-8.3/ext/standard/tests/strings/
H A Dnl_langinfo_basic.phpt14 $original = setlocale(LC_ALL, 'C');
22 setlocale(LC_ALL, $original);
H A Dbug71190.phpt2 Bug #71190 (substr_replace converts integers in original $search array to strings)
H A Dbug71188.phpt2 Bug #71188 (str_replace converts integers in original $search array to strings)
/PHP-8.3/tests/lang/
H A DpassByReference_012.phpt12 $original = array ( array ( 'one' ));
13 $stack = $original;
/PHP-8.3/Zend/tests/
H A Dgh12457.phpt14 echo "Test cases to ensure the original functionality is not broken.\n";
29 Test cases to ensure the original functionality is not broken.
/PHP-8.3/ext/spl/tests/
H A DarrayObject_exchangeArray_basic2.phpt7 $ao->exchangeArray(array('key'=>'original'));
38 string(8) "original"
43 string(8) "original"
/PHP-8.3/ext/session/tests/
H A D006.phpt35 echo "original values:\n";
52 original values:
H A D026.phpt35 echo "original values:\n";
53 original values:
/PHP-8.3/ext/fileinfo/tests/upstream/
H A Darj.result1 ARJ archive data, v11, slash-switched, created 5 1980+48, original name: example_m0.arj, os: Unix
/PHP-8.3/ext/iconv/tests/
H A Dbug68180.phpt7 $original = "=?UTF-8?Q?=E3=80=8E=E3=80=90=E5=A4=96=E8=B3=87=E7=B3=BB=E6=88=A6=E7=95=A5=E3=82=B3=E3=…
8 $decoded = iconv_mime_decode($original, ICONV_MIME_DECODE_STRICT, 'utf-8');
/PHP-8.3/ext/zlib/tests/
H A Dbug60761.phpt13 // try to duplicate the original bug by running this as a CGI
15 // so it follows more of the original code-path than just calling

Completed in 18 milliseconds

123456