Home
last modified time | relevance | path

Searched refs:echo (Results 326 – 350 of 8773) sorted by relevance

1...<<11121314151617181920>>...351

/PHP-5.6/tests/func/
H A D004.phpt6 echo "Before function declaration...\n";
10 echo "----\nIn function, printing the string \"$something\" $times times\n";
12 echo "$i) $something\n";
14 echo "Done with function...\n-----\n";
19 echo "This is some other function, to ensure more than just one function works fine...\n";
23 echo "After function declaration...\n";
25 echo "Calling function for the first time...\n";
27 echo "Returned from function call...\n";
29 echo "Calling the function for the second time...\n";
31 echo "Returned from function call...\n";
/PHP-5.6/Zend/tests/
H A Dbug44899_2.phpt30 echo (isset($myclass->foo)) ? 'isset' : 'not isset';
31 echo "\n";
32 echo (empty($myclass->foo)) ? 'empty' : 'not empty';
33 echo "\n";
34 echo ($myclass->foo) ? 'not empty' : 'empty';
35 echo "\n";
H A Dbug43053.phpt5 echo 1200000.00."\n";
6 echo 1300000.00."\n";
7 echo 1400000.00."\n";
8 echo 1500000.00."\n";
H A Derror_reporting09.phpt9 echo @$blah;
10 echo $undef2;
14 echo @$undef;
16 echo $blah;
24 echo "Done\n";
/PHP-5.6/tests/lang/
H A Dengine_assignExecutionOrder_005.phpt7 echo "i1\n";
12 echo "i2\n";
17 echo "i3\n";
22 echo "i4\n";
27 echo "i5\n";
32 echo "i6\n";
H A D022.phpt12 echo "zero";
15 echo "one";
18 echo $j;
21 echo "\n";
24 echo "Default taken\n";
H A Dfunc_get_arg_variation.phpt9 echo func_get_arg();
10 echo func_get_arg(2,2);
11 echo func_get_arg("hello");
12 echo func_get_arg(-1);
13 echo func_get_arg(2);
16 echo "\n";
/PHP-5.6/ext/spl/tests/
H A Diterator_012.phpt6 echo "===Current===\n";
10 echo $it->key() . '=>' . $it->current() . "\n";
12 echo "===Next===\n";
16 echo "===Foreach===\n";
20 echo "$key=>$val\n";
H A Diterator_019.phpt6 echo "===Current===\n";
10 echo $it->key() . '=>' . $it->current() . "\n";
12 echo "===Next===\n";
16 echo "===Foreach===\n";
20 echo "$key=>$val\n";
H A Dfixedarray_015.phpt11 echo $e->getMessage(), "\n";
16 echo $e->getMessage(), "\n";
21 echo $e->getMessage(), "\n";
26 echo $e->getMessage(), "\n";
32 echo $e->getMessage(), "\n";
37 echo $e->getMessage(), "\n";
40 echo "Done\n";
H A Darray_013.phpt11 echo "===Array===\n";
18 echo "$key=>$val\n";
21 echo "===Append===\n";
28 echo "$key=>$val\n";
31 echo "===Object===\n";
47 echo "$key=>$val\n";
50 echo "===Append===\n";
57 echo "$key=>$val\n";
H A Dfixedarray_019.phpt7 echo "rewind\n";
11 echo "valid\n";
15 echo "next\n";
19 echo "current\n";
23 echo "key\n";
30 echo "$k=>";
/PHP-5.6/ext/pgsql/tests/
H A D05large_object.phpt12 echo "create/write/close LO\n";
15 if (!$oid) echo ("pg_lo_create() error\n");
17 if (!$handle) echo ("pg_lo_open() error\n");
22 echo "open/read/tell/seek/close LO\n";
31 echo "open/read_all/close LO\n";
39 echo "unlink LO\n";
45 echo "Test without connection\n";
51 echo "Test with string oid value\n";
57 echo "import/export LO\n";
66 echo "Export failed\n";
[all …]
/PHP-5.6/ext/standard/tests/math/
H A Dbug30069.phpt5 echo ".1" * "2";
6 echo "\n";
7 echo "-.1" * "2";
8 echo "\n";
/PHP-5.6/ext/date/tests/
H A Dbug41964.phpt11 echo "\n";
15 echo "\n";
19 echo "\n";
23 echo "\n";
27 echo "\n";
31 echo "\n";
35 echo "\n";
/PHP-5.6/ext/standard/tests/array/
H A Dreset_basic.phpt14 echo "*** Testing reset() : basic functionality ***\n";
18 echo "\n-- Initial Position: --\n";
19 echo key($array) . " => " . current($array) . "\n";
21 echo "\n-- Call to next() --\n";
24 echo "\n-- Current Position: --\n";
25 echo key($array) . " => " . current($array) . "\n";
27 echo "\n-- Call to reset() --\n";
/PHP-5.6/ext/oci8/tests/
H A Dbind_misccoltypes.phpt54 echo "\nTEST86 insert all ORATYPE values\n";
165 echo "ID is " . "$ID\n";
166 echo "CHAR_T is " . "$CHAR_T\n";
184 echo "\nTEST52 insert numbers\n";
194 echo "\nTEST53 insert numbers \n";
204 echo "\nTEST54 insert numbers \n";
213 echo "\nTEST55 insert numbers \n";
222 echo "\nTEST56 insert numbers \n";
232 echo "\nTEST58 insert a VARCHAR2\n";
241 echo "\nTEST59 insert a VARCHAR2\n";
[all …]
/PHP-5.6/ext/sqlite3/tests/
H A Dsqlite3_30_blobopen.phpt12 echo "Creating Table\n";
15 echo "PREPARING insert\n";
18 echo "BINDING Parameter\n";
22 echo "Closing statement\n";
26 echo "Stream Contents\n";
28 echo "Closing Stream\n";
30 echo "Closing database\n";
32 echo "Done\n";
/PHP-5.6/tests/classes/
H A Dinheritance_005.phpt9 echo "In " . __METHOD__ . "\n";
22 echo "About to construct new B: \n";
25 echo "Is B::B() callable?\n";
28 echo "Is B::A() callable?\n";
31 echo "About to construct new C: \n";
34 echo "Is C::A() callable?\n";
37 echo "Is C::B() callable?\n";
40 echo "Is C::C() callable?\n";
/PHP-5.6/ext/standard/tests/file/windows_acls/
H A Dbug44859_4.phpt22 echo "Testing file with relative path:\n";
28 echo 'Iteration #' . $i++ . ': ';
30 echo "passed.\n";
33 echo "failed.\n";
38 echo "Testing directory with relative path:\n";
44 echo 'Iteration #' . $i++ . ': ';
46 echo "passed.\n";
49 echo "failed.\n";
/PHP-5.6/ext/standard/tests/strings/
H A Dchr_basic.phpt11 echo "*** Testing chr() : basic functionality ***\n";
13 echo chr(72). chr(101) . chr(108) . chr(108). chr(111); // Hello
14 echo chr(10); // "\n"
15 echo "World";
16 echo "\n";
/PHP-5.6/ext/gd/tests/
H A Dgif2gd.phpt17 echo "GIF to GD1 conversion: ";
18 echo imagegd(imagecreatefromgif($cwd . "/conv_test.gif"), $cwd . "/test.gd1") ? 'ok' : 'failed';
19 echo "\n";
21 echo "GIF to GD2 conversion: ";
22 echo imagegd2(imagecreatefromgif($cwd . "/conv_test.gif"), $cwd . "/test.gd2") ? 'ok' : 'failed';
23 echo "\n";
H A Dxpm2gd.phpt17 echo "XPM to GD1 conversion: ";
18 echo imagegd(imagecreatefromxpm($cwd . "/conv_test.xpm"), $cwd . "/test.gd1") ? 'ok' : 'failed';
19 echo "\n";
21 echo "XPM to GD2 conversion: ";
22 echo imagegd2(imagecreatefromxpm($cwd . "/conv_test.xpm"), $cwd . "/test.gd2") ? 'ok' : 'failed';
23 echo "\n";
/PHP-5.6/ext/standard/tests/general_functions/
H A Dbug34794.phpt5 if (!is_executable('/bin/cat')) echo 'skip cat not found';
9 echo "Opening process 1\n";
12 echo "Opening process 2\n";
16 echo "Closing process 1\n";
21 echo "Closing process 2\n";
26 echo "Done\n";
/PHP-5.6/ext/calendar/tests/
H A Dfrenchtojd.phpt7 echo frenchtojd(-1,-1,-1), "\n";
8 echo frenchtojd(0,0,0), "\n";
9 echo frenchtojd(1,1,1), "\n";
10 echo frenchtojd(14,31,15), "\n";

Completed in 27 milliseconds

1...<<11121314151617181920>>...351