Home
last modified time | relevance | path

Searched refs:print (Results 76 – 100 of 1807) sorted by relevance

12345678910>>...73

/PHP-7.4/ext/xsl/tests/
H A Dxslt002.phpt13 print "No or more than one xsl:output/@method found";
18 print "\n";
19 print $proc->transformToXml($dom);
20 print "\n";
H A Dbug54446.phpt37 print $proc->transformToXML( $dom );
41 print "$outputfile exists, but shouldn't!\n";
43 print "OK, no file created\n";
50 print $proc->transformToXML( $dom );
54 print "OK, file exists\n";
56 print "$outputfile doesn't exist, but should!\n";
65 print $proc->transformToXML( $dom );
68 print "$outputfile exists, but shouldn't!\n";
70 print "OK, no file created\n";
H A Dbug54446_with_ini.phpt37 print $proc->transformToXML( $dom );
41 print "$outputfile exists, but shouldn't!\n";
43 print "OK, no file created\n";
50 print $proc->transformToXML( $dom );
54 print "OK, file exists\n";
56 print "$outputfile doesn't exist, but should!\n";
65 print $proc->transformToXML( $dom );
68 print "$outputfile exists, but shouldn't!\n";
70 print "OK, no file created\n";
H A Dxslt006.phpt10 print "\n";
12 print $doc->saveXML();
13 print "\n";
H A Dxslt001.phpt10 print "\n";
11 print $proc->transformToXml($dom);
12 print "\n";
H A Dxslt003.phpt11 print "\n";
12 print $proc->transformToXml($dom);
13 print "\n";
/PHP-7.4/ext/standard/tests/file/
H A Dfileinode_basic.phpt15 print( fileinode("$file_path/inode.tmp") )."\n";
18 print( fileinode(__FILE__) )."\n";
21 print( fileinode(".") )."\n";
22 print( fileinode("./..") )."\n";
H A Dfiletype_error.phpt13 print( filetype("/no/such/file/dir") );
16 print( filetype("string") );
17 print( filetype(100) );
20 print( filetype() );
23 print( filetype("file", "file") );
H A D005_basic.phpt24 print( @date('Y:M:D:H:i:s', fileatime(__FILE__)) )."\n";
25 print( @date('Y:M:D:H:i:s', filemtime(__FILE__)) )."\n";
26 print( @date('Y:M:D:H:i:s', filectime(__FILE__)) )."\n";
27 print( @date('Y:M:D:H:i:s', touch(__DIR__."/005_basic.tmp")) )."\n";
30 print( @date('Y:M:D:H:i:s', fileatime(".")) )."\n";
31 print( @date('Y:M:D:H:i:s', filemtime(".")) )."\n";
32 print( @date('Y:M:D:H:i:s', filectime(".")) )."\n";
33 print( @date('Y:M:D:H:i:s', touch(__DIR__."/005_basic")) )."\n";
H A Dfiletype_variation.phpt29 print( filetype($file1) )."\n";
30 print( filetype($file2) )."\n";
35 print( filetype($link1 ) )."\n";
39 print( filetype($link2) )."\n";
48 print( filetype("$file_path/filetype_variation") )."\n";
53 print( filetype( $file3) )."\n";
/PHP-7.4/Zend/tests/
H A Dbug76800.phpt5 $arr = [1 => 1, 3 => 3]; // [1 => 1, 2 => 3] will print both keys
6 foreach($arr as $key => &$val) { // without & will print both keys
8 $arr[0] = 0; // without this line will print both keys
H A Dbug30394.phpt23 print $c->a; // --> 2
25 print " - ";
27 print $c->a; // --> 4 (!)
H A Dbug20240.phpt16 print __METHOD__ . "\n";
20 print __METHOD__ . "\n";
25 print $this->member."\n";
/PHP-7.4/ext/com_dotnet/tests/
H A Dbug39596.phpt5 if (!extension_loaded("com_dotnet")) print "skip COM/.Net support not present"; ?>
14 print $element."\n";
17 print $e;
/PHP-7.4/ext/standard/tests/strings/
H A Dprint_variation1.phpt2 Test print() function : usage variations
6 /* Prototype : int print ( string $arg )
8 * Source code: n/a, print is a language construct not an extension function
12 echo "*** Testing print() function: with unexpected inputs for 'arg' argument ***\n";
71 // loop through with each element of the $inputs array to test print() function
75 $res = print($input);
86 *** Testing print() function: with unexpected inputs for 'arg' argument ***
/PHP-7.4/ext/date/tests/
H A Dbug42910.phpt9print $foo->format(DateTime::ISO8601) . ' - ' . $foo->getTimezone()->getName() . ' - ' . $foo->fo…
10print $bar->format(DateTime::ISO8601) . ' - ' . $bar->getTimezone()->getName() . ' - ' . $bar->fo…
15print $foo->format(DateTime::ISO8601) . ' - ' . $foo->getTimezone()->getName() . ' - ' . $foo->fo…
16print $bar->format(DateTime::ISO8601) . ' - ' . $bar->getTimezone()->getName() . ' - ' . $bar->fo…
/PHP-7.4/ext/sysvshm/tests/
H A Dbug72858.phpt5 if (!extension_loaded("sysvshm")){ print 'skip'; }
6 if (4 < PHP_INT_SIZE) { print "skip 32-bit only"; }
7 if (substr(PHP_OS, 0, 3) != "WIN") { print "skip windows only"; }
/PHP-7.4/ext/standard/tests/general_functions/
H A Dintval_binary_prefix.phpt33 print "--- Good Inputs - Base = 0 ---\n";
41 print "--- Good Inputs - Base = 2 ---\n";
49 print "--- Good Inputs - Base = default ---\n";
57 print "--- Bad Inputs - Base = 0 ---\n";
65 print '--- Done ---';
/PHP-7.4/ext/pdo_mysql/tests/
H A Dbug41125.phpt21 print implode(' - ', (($r = @$stmt->fetch(PDO::FETCH_NUM)) ? $r : array())) ."\n";
22 print implode(' - ', $stmt->errorinfo()) ."\n";
24 print "-------------------------------------------------------\n";
37 print implode(' - ', (($r = @$stmt->fetch(PDO::FETCH_NUM)) ? $r : array())) ."\n";
38 print implode(' - ', $stmt->errorinfo()) ."\n";
39 print "--------\n";
50 print implode(' - ', (($r = @$stmt->fetch(PDO::FETCH_NUM)) ? $r : array())) ."\n";
51 print implode(' - ', $stmt->errorinfo()) ."\n";
53 print "-------------------------------------------------------\n";
81 print implode(' - ', $stmt->errorinfo()) ."\n";
[all …]
/PHP-7.4/ext/bz2/tests/
H A Dwith_files.phpt4 <?php if (!extension_loaded("bz2")) print "skip"; ?>
17 print bzread($bz, 10);
18 print bzread($bz);
H A Dbug51997.phpt4 <?php if (!extension_loaded("bz2")) print "skip"; ?>
18 print bzread($bz, 10);
19 print bzread($bz);
/PHP-7.4/ext/standard/tests/array/
H A Dbug12776.phpt11 print "val: $val; key: $key\n"; flush();
17 print "First value: ".$globalArray[0];
19 print "\nDone\n";
/PHP-7.4/ext/xmlwriter/tests/
H A Dxmlwriter_write_dtd_basic_001.phpt4 <?php if (!extension_loaded("xmlwriter")) print "skip"; ?>
11 print $output . PHP_EOL;
15 print $output;
/PHP-7.4/ext/pcre/tests/
H A Dbug78272.phpt13 print "Child start\n";
16 print "End child\n";
20 print "End Main\n";
/PHP-7.4/ext/standard/tests/math/
H A Dlog.phpt12 print "$x : $x2\n";
15 print $count . "\n";
25 print "base $base: $x : $x2\n";
28 print $count . "\n";

Completed in 27 milliseconds

12345678910>>...73