Home
last modified time | relevance | path

Searched refs:ok (Results 76 – 100 of 868) sorted by relevance

12345678910>>...35

/PHP-5.5/ext/gd/tests/
H A Dgif2gd.phpt18 echo imagegd(imagecreatefromgif($cwd . "/conv_test.gif"), $cwd . "/test.gd1") ? 'ok' : 'failed';
22 echo imagegd2(imagecreatefromgif($cwd . "/conv_test.gif"), $cwd . "/test.gd2") ? 'ok' : 'failed';
29 GIF to GD1 conversion: ok
30 GIF to GD2 conversion: ok
H A Dxpm2gd.phpt18 echo imagegd(imagecreatefromxpm($cwd . "/conv_test.xpm"), $cwd . "/test.gd1") ? 'ok' : 'failed';
22 echo imagegd2(imagecreatefromxpm($cwd . "/conv_test.xpm"), $cwd . "/test.gd2") ? 'ok' : 'failed';
29 XPM to GD1 conversion: ok
30 XPM to GD2 conversion: ok
H A Dcolorat.phpt18 echo $c == 0x0 ? 'ok' : 'failed';
37 echo !$failed ? 'ok' : 'failed';
41 test colorat truecolor: ok
42 test colorat palette: ok
H A Ddashedlines.phpt29 echo "Horizontal: ok\n";
49 echo "Vertical: ok\n";
69 echo "Diagonal: ok\n";
76 Horizontal: ok
77 Vertical: ok
78 Diagonal: ok
H A Dcopypalette.phpt26 echo $failed ? 'failed' : 'ok';
39 echo $failed ? 'failed' : 'ok';
43 copy palette 255 colors: ok
44 copy palette 1 color and alpha: ok
H A Dcopy.phpt24 echo "TC/TC: ok\n";
49 echo "TC/P: ok\n";
79 echo "P/P: ok\n";
102 echo "P/TC: ok\n";
106 TC/TC: ok
107 TC/P: ok
108 P/P: ok
109 P/TC: ok
H A Dcopyresized.phpt51 echo "TC->TC: ok\n";
67 echo "P->TC: ok\n";
86 echo "P->P: ok\n";
89 TC->TC: ok
90 P->TC: ok
91 P->P: ok
/PHP-5.5/tests/security/
H A Dopen_basedir_symlink.phpt17 $target = ($initdir."/test/ok/ok.txt");
23 $symlink = ($initdir."/test/ok/symlink.txt");
30 $target = ($initdir."/test/ok/ok.txt");
36 $symlink = ($initdir."/test/ok/ok2/ok.txt");
37 var_dump(symlink("../ok.txt", $symlink)); // $target == (dirname($symlink)."/".$target) == ($initdi…
H A Dopen_basedir_copy.phpt10 var_dump(copy("ok.txt", "../bad"));
11 var_dump(copy("ok.txt", "../bad/bad.txt"));
12 var_dump(copy("ok.txt", ".."));
13 var_dump(copy("ok.txt", "../"));
14 var_dump(copy("ok.txt", "/"));
15 var_dump(copy("ok.txt", "../bad/."));
16 var_dump(copy("ok.txt", "../bad/./bad.txt"));
17 var_dump(copy("ok.txt", "./../."));
19 var_dump(copy("ok.txt", "copy.txt"));
H A Dopen_basedir_dir.phpt13 var_dump(dir($initdir."/test/ok/"));
14 var_dump(dir($initdir."/test/ok"));
15 var_dump(dir($initdir."/test/ok/../ok"));
72 string(%d) "%s/test/ok/"
78 string(%d) "%s/test/ok"
84 string(%d) "%s/test/ok/../ok"
H A Dopen_basedir_file.phpt12 var_dump(file("ok.txt"));
13 var_dump(file("../ok/ok.txt"));
14 var_dump(file($initdir."/test/ok/ok.txt"));
15 var_dump(file($initdir."/test/ok/../ok/ok.txt"));
H A Dopen_basedir_file_get_contents.phpt12 var_dump(file_get_contents("ok.txt"));
13 var_dump(file_get_contents("../ok/ok.txt"));
14 var_dump(file_get_contents($initdir."/test/ok/ok.txt"));
15 var_dump(file_get_contents($initdir."/test/ok/../ok/ok.txt"));
/PHP-5.5/Zend/tests/
H A Dlsb_013.phpt8 var_dump(is_callable("static::ok"));
9 var_dump(is_callable(array("static","ok")));
14 static function ok() {
H A Dbug41929.phpt6 private $priv = "ok";
23 ok
24 priv: ok
H A Dcall_static_006.phpt8 print "ok\n";
25 ok
28 ok
H A Dbug32833.phpt6 $test[] .= "ok\n";
10 ok
H A Dbug43027.phpt7 echo "ok\n";
10 ok
/PHP-5.5/ext/zip/tests/
H A Doo_open.phpt15 echo "ER_OPEN: ok\n";
24 echo "create: ok\n";
42 ER_OPEN: ok
43 create: ok
/PHP-5.5/ext/pgsql/tests/
H A Dbug64609.phpt16 pg_query("CREATE TYPE t_enum AS ENUM ('ok', 'ko')");
19 $fields = array('a' => 'ok');
29 string(5) "E'ok'"
/PHP-5.5/win32/
H A Dfnmatch.c155 int negate, ok; in rangematch() local
171 for (ok = 0; (c = *pattern++) != ']';) { in rangematch()
193 ok = 1; in rangematch()
195 ok = 1; in rangematch()
197 return (ok == negate ? NULL : pattern); in rangematch()
/PHP-5.5/ext/xmlreader/tests/
H A D007.phpt21 print "file relaxNG: ok\n";
36 print "string relaxNG: ok\n";
53 file relaxNG: ok
54 string relaxNG: ok
H A D005.phpt21 echo "ok\n";
28 echo "ok\n";
36 ok
/PHP-5.5/tests/strings/
H A D001.phpt71 $tests = $ok = 0;
73 $tests++; if (substr($string, 2, 10) == "ring12345") { $ok++; }
74 $tests++; if (substr($string, 4, 7) == "ng12345") { $ok++; }
75 $tests++; if (substr($string, 4) == "ng12345") { $ok++; }
76 $tests++; if (substr($string, 10, 2) == "5") { $ok++; }
77 $tests++; if (substr($string, 6, 0) == "") { $ok++; }
78 $tests++; if (substr($string, -2, 2) == "45") { $ok++; }
79 $tests++; if (substr($string, 1, -1) == "tring1234") { $ok++; }
80 $tests++; if (substr($string, -1, -2) == "") { $ok++; }
81 $tests++; if (substr($string, -3, -2) == "3") { $ok++; }
[all …]
/PHP-5.5/ext/openssl/tests/
H A Dbug37820.phpt26 $ok = openssl_verify($data, $signature, $pub_key_id, OPENSSL_ALGO_MD5);
27 if ($ok == 1) {
29 } elseif ($ok == 0) {
/PHP-5.5/ext/intl/tests/
H A Dcollator_get_error_code.phpt18 return ( $rc === $expected ? "ok" : "failed" ) . "\n";
46 ok
47 ok

Completed in 42 milliseconds

12345678910>>...35