Home
last modified time | relevance | path

Searched refs:print (Results 51 – 75 of 1807) sorted by relevance

12345678910>>...73

/PHP-7.4/ext/date/tests/
H A Dbug45081.phpt8 print strtotime('2008-05-23 00:00:00 +08');
9 print "\n";
10 print strtotime('2008-05-23 00:00:00');
H A Dbug32555.phpt12 print strftime('%c %Z',strtotime('now',$stamp)) ."\n";
13 print strftime('%c %Z',strtotime('tomorrow',$stamp)) ."\n";
14 print strftime('%c %Z',strtotime('+1 day',$stamp)) ."\n";
15 print strftime('%c %Z',strtotime('+2 day',$stamp)) ."\n";
/PHP-7.4/ext/standard/tests/general_functions/
H A Dbug44295.phpt13 function my_error_handler() {$a = func_get_args(); print "in error handler\n"; }
16 print "before\n";
18 print get_class($iter) . "\n";
19 print "after\n";
21 print "in catch: ".$e->getMessage()."\n";
/PHP-7.4/ext/iconv/tests/
H A Diconv002.phpt21 foreach($s as $c) { print "&#$c;"; } print "\n";
25 print $q; print "\n";
/PHP-7.4/Zend/tests/
H A Disset_str_offset.phpt6 print "- isset ---\n";
19 print "- string literal ---\n";
28 print "- string variable ---\n";
37 print "- bool ---\n";
41 print "- null ---\n";
43 print "- double ---\n";
52 print "- array ---\n";
55 print "- object ---\n";
57 print "- resource ---\n";
60 print "done\n";
H A Dempty_str_offset.phpt6 print "- empty ---\n";
20 print "- string literal ---\n";
29 print "- string variable ---\n";
38 print "- bool ---\n";
42 print "- null ---\n";
44 print "- double ---\n";
54 print "- array ---\n";
57 print "- object ---\n";
59 print "- resource ---\n";
62 print "done\n";
H A Djump12.phpt5 a: print "ok!\n";
9 print "ok!\n";
13 print "ok!\n";
H A Dmagic_methods_001.phpt8 print "unset\n";
13 print "call\n";
17 print "clone\n";
20 print "callstatic\n";
H A Djump11.phpt11 print "ok!\n";
14 print "ok!\n";
17 print "ok!\n";
/PHP-7.4/ext/standard/tests/array/
H A Dcount_recursive.phpt10 print "-- Testing NULL --\n";
15 print "-- Testing arrays --\n";
20 print "-- Testing hashes --\n";
25 print "-- Testing strings --\n";
35 print "-- Testing really cool arrays --\n";
66 print "COUNT_NORMAL: should be 1, is ".count(100)."\n";
70 print "COUNT_NORMAL: should be 0, is ".count(NULL)."\n";
71 print "COUNT_NORMAL: should be 1, is ".count("")."\n";
72 print "COUNT_NORMAL: should be 0, is ".@count($a)."\n";
75 print "\n-- Testing count() on an empty sub-array --\n";
[all …]
/PHP-7.4/tests/lang/
H A D035.phpt24 print "There shouldn't be an exception: " . $exception->getException();
25 print "\n";
31 print "There was an exception: " . $exception->getException();
32 print "\n";
H A D031.phpt9 print "Correct - with inner loop reset.\n";
14 print "inloop $i for $o\n";
20 print "What happens without inner loop reset.\n";
24 print "inloop $i for $o\n";
30 print "What happens without inner loop reset but copy.\n";
35 print "inloop $i for $o\n";
41 print "What happens with inner loop reset over copy.\n";
46 print "inloop $i for $o\n";
/PHP-7.4/ext/pcntl/tests/
H A Dasync_signals.phpt5 if (!extension_loaded("pcntl")) print "skip";
6 elseif (!function_exists("pcntl_signal")) print "skip pcntl_signal() not available";
7 elseif (!function_exists("posix_kill")) print "skip posix_kill() not available";
8 elseif (!function_exists("posix_getpid")) print "skip posix_getpid() not available";
H A Dsignal_closure_handler.phpt5 if (!extension_loaded("pcntl")) print "skip";
6 elseif (!function_exists("pcntl_signal")) print "skip pcntl_signal() not available";
7 elseif (!function_exists("posix_kill")) print "skip posix_kill() not available";
8 elseif (!function_exists("posix_getpid")) print "skip posix_getpid() not available";
/PHP-7.4/ext/standard/tests/file/
H A Dbug26938.phpt12 . ' for($i=0;$i<$length;$i++) print chr(65+$i % 27);'
13 . ' print "\n";'
19 . ' for($i=0;$i<$length;$i++) print chr(65+$i % 27);'
20 . ' print \\"\\n\\";'
24 print "md5(line $i)= " . md5($out[$i]) . " (length " .
/PHP-7.4/ext/mysqli/tests/
H A Dmysqli_fetch_assoc_no_alias.phpt16 print "[002]\n";
23 print "[004]\n";
30 print "[006]\n";
37 print "[008]\n";
48 print "[011]\n";
58 print "[014]\n";
68 print "[017]\n";
78 print "[017]\n";
83 print "done!";
H A Dmysqli_free_result.phpt27 print "a\n";
29 print "b\n";
35 print "c\n";
38 print "[005]\n";
44 print "d\n";
47 print "[007]\n";
51 print "done!";
/PHP-7.4/ext/xmlreader/tests/
H A D007.phpt4 <?php if (!extension_loaded("xmlreader")) print "skip"; ?>
20 print "file relaxNG: ok\n";
22 print "file relaxNG: failed\n";
35 print "string relaxNG: ok\n";
37 print "string relaxNG: failed\n";
/PHP-7.4/ext/dom/tests/
H A Ddom_test.inc25 print "Node Name: " . $node->nodeName;
26 print "\nNode Type: " . $node->nodeType;
32 print "\nNum Children: " . $child_count;
34 print "\nNode Content: " . $node->nodeValue;
36 print "\n\n";
H A DDOMDocumentType_basic_001.phpt17 print "publicId: ".$doctype->publicId."\n";
18 print "systemId: ".$doctype->systemId."\n";
19 print "name: ".$doctype->name."\n";
20 print "internalSubset: ".$doctype->internalSubset."\n";
37 print 'entity: '.$entity->nodeName."\n";
40 print 'notation: '.$notation->nodeName."\n";
/PHP-7.4/ext/xml/tests/
H A Dxml_closures_001.phpt11 print "<$elem";
14 print " $k=\"$v\"";
17 print ">\n";
22 print "</$elem>\n";
/PHP-7.4/ext/xsl/tests/
H A Dxslt005.phpt12 print "No or more than one xsl:output/@indent found";
17 print "\n";
18 print $proc->transformToXml($dom);
19 print "\n";
H A Dxslt004.phpt12 print "No or more than one xsl:output/@encoding found";
17 print "\n";
18 print $proc->transformToXml($dom);
19 print "\n";
/PHP-7.4/ext/reflection/tests/
H A Dbug48336.phpt28 print($class.' => ');
31 print($rp->getDeclaringClass()->getName());
33 print('N/A');
35 print("\n");
/PHP-7.4/ext/simplexml/tests/
H A D021.phpt4 <?php if (!extension_loaded("simplexml")) print "skip"; ?>
17 print "Works\n";
19 print "Error\n";

Completed in 33 milliseconds

12345678910>>...73