Home
last modified time | relevance | path

Searched refs:from (Results 26 – 50 of 1324) sorted by relevance

12345678910>>...53

/PHP-5.3/ext/sybase_ct/tests/
H A Dtest_unbuffered_no_full_fetch.phpt18 $q= sybase_unbuffered_query('select name from master..systypes', $db);
21 // Fetch #2 - without having fetched all rows from previous query
22 $q= sybase_unbuffered_query('select name from master..systypes', $db);
25 // Fetch #3 - free first, without having fetched all rows from previous query
27 $q= sybase_unbuffered_query('select name from master..systypes', $db);
30 // Close - without having fetched all rows from previous query
39 Notice: sybase_unbuffered_query(): Sybase: Called without first fetching all rows from a previous …
H A Dbug43578.phpt27 var_dump(sybase_select_ex($db, 'select DC_Rights from #Resource where Resource_ID = 122'));
30 var_dump(sybase_select_ex($db, 'select DC_Rights from #Resource where Resource_ID = 123'));
33 var_dump(sybase_select_ex($db, 'select DC_Rights from #Resource where Resource_ID = 124'));
43 >>> Query: select DC_Rights from #Resource where Resource_ID = 122
47 >>> Query: select DC_Rights from #Resource where Resource_ID = 123
56 >>> Query: select DC_Rights from #Resource where Resource_ID = 124
/PHP-5.3/tests/classes/
H A Dconstants_basic_003.phpt16 const MY_CONST = "hello from C";
25 string(12) "hello from A"
26 string(12) "hello from C"
27 string(12) "hello from A"
28 string(12) "hello from C"
/PHP-5.3/ext/standard/tests/strings/
H A Dconvert_cyr_string_error.phpt6 /* Prototype : string convert_cyr_string ( string $str , string $from , string $to )
7 * Description: Convert from one Cyrillic character set to another
12 $from = "k";
22 var_dump( convert_cyr_string($str, $from) );
25 var_dump( convert_cyr_string($str, $from, $to, $extra_arg) );
27 echo "\n-- Testing convert_cyr_string() function with invalid 'from' character set --\n";
31 var_dump(bin2hex( convert_cyr_string($str, $from, "?")) );
33 echo "\n-- Testing convert_cyr_string() function with invalid 'from' and 'to' character set --\n";
56 -- Testing convert_cyr_string() function with invalid 'from' character set --
66 -- Testing convert_cyr_string() function with invalid 'from' and 'to' character set --
H A Dstrtr_variation6.phpt2 Test strtr() function : usage variations - unexpected inputs for 'from' argument
5 /* Prototype : string strtr(string $str, string $from[, string $to]);
11 /* Test strtr() function: with unexpected inputs for 'from'
15 echo "*** Testing strtr() function: with unexpected inputs for 'from' ***\n";
34 // array of values for 'from'
78 // loop through with each element of the $from array to test strtr() function
82 $from = $from_arr[$index];
83 var_dump( strtr($str, $from, $to) );
91 *** Testing strtr() function: with unexpected inputs for 'from' ***
H A Dltrim_basic.phpt7 * Description: Strip whitespace (or other characters) from the beginning of a string.
21 echo "\n-- Trim non-whitespace from a string --\n";
24 echo "\n-- Trim some non-white space characters from a string --\n";
27 echo "\n-- Trim some non-white space characters from a string suing a character range --\n";
42 -- Trim non-whitespace from a string --
45 -- Trim some non-white space characters from a string --
48 -- Trim some non-white space characters from a string suing a character range --
H A Drtrim_basic.phpt7 * Description: Strip whitespace (or other characters) from the end of a string.
23 echo "\n-- Trim non-whitespace from a string --\n";
26 echo "\n-- Trim some non-white space characters from a string --\n";
29 echo "\n-- Trim some non-white space characters from a string using a character range --\n";
43 -- Trim non-whitespace from a string --
46 -- Trim some non-white space characters from a string --
49 -- Trim some non-white space characters from a string using a character range --
/PHP-5.3/ext/reflection/tests/
H A DReflectionObject_getConstant_basic.phpt6 const a = 'hello from C';
13 const a = 'hello from F';
28 string(12) "hello from C"
31 string(12) "hello from C"
34 string(12) "hello from C"
37 string(12) "hello from F"
H A DReflectionParameter_001.phpt26 echo "Parameters from twoArgMethod:\n\n";
35 echo "Parameters from oneArgNonStatic:\n\n";
45 echo "Parameters from noArgs:\n\n";
57 Parameters from twoArgMethod:
69 Parameters from oneArgNonStatic:
76 Parameters from noArgs:
/PHP-5.3/ext/oci8/tests/
H A Drefcur_prefetch_4.phpt85 // Fetch from PL/SQL
90 echo "Fetch Row from PL/SQL\n";
94 // Fetch from PHP
95 echo "Fetch Row from PHP\n";
105 // Fetch from PHP
110 echo "Fetch Row from PHP\n";
118 // Fetch from PL/SQL
155 Fetch Row from PL/SQL
158 Fetch Row from PHP
166 Fetch Row from PHP
[all …]
H A Drefcur_prefetch_1.phpt118 Fetch Row from PHP
125 Fetch Row from PL/SQL
131 Fetch Row from PHP
138 Fetch Row from PL/SQL
144 Fetch Row from PHP
155 Fetch Row from PL/SQL
161 Fetch Row from PHP
174 Fetch Row from PHP
187 Fetch Row from PHP
206 Fetch Row from PHP
[all …]
H A Dbug51291_1.phpt12 $s = @oci_parse($c, "select ' from dual");
21 $s = @oci_parse($c, "select ' from dual");
73 $s2 = oci_parse($c, 'select 1 from dual');
92 $s = oci_parse($c, 'select 1 from dual');
208 string(29) "select doesnotexist from dual"
219 string(29) "select doesnotexist from dual"
233 string(29) "select doesnotexist from dual"
246 string(29) "select doesnotexist from dual"
260 string(29) "select doesnotexist from dual"
274 string(29) "select doesnotexist from dual"
[all …]
/PHP-5.3/ext/mbstring/libmbfl/mbfl/
H A Dmbfl_convert.c248 enum mbfl_no_encoding from, in mbfl_convert_filter_common_init() argument
256 if ((filter->from = mbfl_no2encoding(from)) == NULL) { in mbfl_convert_filter_common_init()
289 enum mbfl_no_encoding from, in mbfl_convert_filter_new() argument
298 vtbl = mbfl_convert_filter_get_vtbl(from, to); in mbfl_convert_filter_new()
377 vtbl = mbfl_convert_filter_get_vtbl(from, to); in mbfl_convert_filter_reset()
383 mbfl_convert_filter_common_init(filter, from, to, vtbl, in mbfl_convert_filter_reset()
542 from = mbfl_no_encoding_8bit; in mbfl_convert_filter_get_vtbl()
543 } else if (from == mbfl_no_encoding_base64 || in mbfl_convert_filter_get_vtbl()
544 from == mbfl_no_encoding_qprint || in mbfl_convert_filter_get_vtbl()
545 from == mbfl_no_encoding_uuencode) { in mbfl_convert_filter_get_vtbl()
[all …]
/PHP-5.3/ext/bz2/tests/
H A D003.txt.bz2
/PHP-5.3/tests/lang/
H A DforeachLoop.011.phpt2 Changing from an interable type to a non iterable type during the iteration
5 echo "\nChange from array to non iterable:\n";
13 echo "\nChange from object to non iterable:\n";
26 Change from array to non iterable:
31 Change from object to non iterable:
/PHP-5.3/ext/iconv/tests/
H A Diconv_mime_decode_headers_variation2.phpt27 Received: from localhost (localhost [127.0.0.1]) by localhost
30 (envelope-from example-return-0000-example=example.com@example.com)
135 …"from localhost (localhost [127.0.0.1]) by localhost with SMTP id example for <example@example.com…
154 …"from localhost (localhost [127.0.0.1]) by localhost with SMTP id example for <example@example.com…
173 …"from localhost (localhost [127.0.0.1]) by localhost with SMTP id example for <example@example.com…
192 …"from localhost (localhost [127.0.0.1]) by localhost with SMTP id example for <example@example.com…
211 …"from localhost (localhost [127.0.0.1]) by localhost with SMTP id example for <example@example.com…
230 …"from localhost (localhost [127.0.0.1]) by localhost with SMTP id example for <example@example.com…
249 …"from localhost (localhost [127.0.0.1]) by localhost with SMTP id example for <example@example.com…
268 …"from localhost (localhost [127.0.0.1]) by localhost with SMTP id example for <example@example.com…
[all …]
H A Diconv_mime_decode_headers_variation3.phpt30 Received: from localhost (localhost [127.0.0.1]) by localhost
33 (envelope-from example-return-0000-example=example.com@example.com)
138 …"from localhost (localhost [127.0.0.1]) by localhost with SMTP id example for <example@example.com…
157 …"from localhost (localhost [127.0.0.1]) by localhost with SMTP id example for <example@example.com…
176 …"from localhost (localhost [127.0.0.1]) by localhost with SMTP id example for <example@example.com…
195 …"from localhost (localhost [127.0.0.1]) by localhost with SMTP id example for <example@example.com…
214 …"from localhost (localhost [127.0.0.1]) by localhost with SMTP id example for <example@example.com…
233 …"from localhost (localhost [127.0.0.1]) by localhost with SMTP id example for <example@example.com…
252 …"from localhost (localhost [127.0.0.1]) by localhost with SMTP id example for <example@example.com…
271 …"from localhost (localhost [127.0.0.1]) by localhost with SMTP id example for <example@example.com…
[all …]
H A Diconv_mime_decode_variation3.phpt121 Notice: iconv_mime_decode(): Wrong charset, conversion from `???' to `0' is not allowed in %s on li…
126 Notice: iconv_mime_decode(): Wrong charset, conversion from `???' to `1' is not allowed in %s on li…
131 Notice: iconv_mime_decode(): Wrong charset, conversion from `???' to `12345' is not allowed in %s o…
136 Notice: iconv_mime_decode(): Wrong charset, conversion from `???' to `-2345' is not allowed in %s o…
141 Notice: iconv_mime_decode(): Wrong charset, conversion from `???' to `10.5' is not allowed in %s on…
146 Notice: iconv_mime_decode(): Wrong charset, conversion from `???' to `-10.5' is not allowed in %s o…
161 Notice: iconv_mime_decode(): Wrong charset, conversion from `???' to `0.5' is not allowed in %s on …
172 Notice: iconv_mime_decode(): Wrong charset, conversion from `???' to `1' is not allowed in %s on li…
180 Notice: iconv_mime_decode(): Wrong charset, conversion from `???' to `1' is not allowed in %s on li…
194 Notice: iconv_mime_decode(): Wrong charset, conversion from `???' to `string' is not allowed in %s …
[all …]
/PHP-5.3/ext/standard/tests/file/
H A Dfgets_socket_variation1.phpt25 echo "\n\nRead a line from the client:\n";
28 echo "\n\nRead another line from the client:\n";
31 echo "\n\nClose the server side socket and read the remaining data from the client\n";
45 Read a line from the client:
50 Read another line from the client:
55 Close the server side socket and read the remaining data from the client
/PHP-5.3/Zend/tests/
H A Dbug52041.phpt2 Bug #52041 (Memory leak when writing on uninitialized variable returned from function)
27 Strict Standards: Creating default object from empty value in %sbug52041.php on line 6
31 Strict Standards: Creating default object from empty value in %sbug52041.php on line 7
35 Strict Standards: Creating default object from empty value in %sbug52041.php on line 8
39 Strict Standards: Creating default object from empty value in %sbug52041.php on line 9
43 Strict Standards: Creating default object from empty value in %sbug52041.php on line 10
47 Strict Standards: Creating default object from empty value in %sbug52041.php on line 11
/PHP-5.3/ext/gd/tests/
H A Dcreatefromgd2.phpt12 echo 'test create from gd2: ';
17 echo 'test create from gd2 part: ';
22 test create from gd2: ok
23 test create from gd2 part: ok
/PHP-5.3/ext/sockets/tests/
H A Dsocket_sentto_recvfrom_ipv4_udp.phpt17 socket_recvfrom($socket, $buf, 12, 0, $from, $port); // cause warning
33 $from = "";
36 socket_recvfrom($socket, $buf, 12, 0, $from); // cause warning
37 $bytes_received = socket_recvfrom($socket, $buf, 12, 0, $from, $port);
39 die('An error occured while receiving from the socket');
43 echo "Received $buf from remote address $from and remote port $port" . PHP_EOL;
54 Received Ping! from remote address 127.0.0.1 and remote port 1223
H A Dsocket_sentto_recvfrom_ipv6_udp.phpt18 socket_recvfrom($socket, $buf, 12, 0, $from, $port); // cause warning
34 $from = "";
37 socket_recvfrom($socket, $buf, 12, 0, $from); // cause warning
38 $bytes_received = socket_recvfrom($socket, $buf, 12, 0, $from, $port);
40 die('An error occured while receiving from the socket');
44 echo "Received $buf from remote address $from and remote port $port" . PHP_EOL;
55 Received Ping! from remote address ::1 and remote port 1223
/PHP-5.3/ext/pdo/tests/
H A Dbug_43139.phpt20 $from = '';
22 $from = 'from dual';
24 $from = 'FROM RDB$DATABASE';
27 var_dump($db->query("select 0 as abc, 1 as xyz, 2 as def $from")->fetchAll(PDO::FETCH_GROUP));
/PHP-5.3/ext/openssl/tests/
H A D008.phpt17 var_dump(openssl_x509_export($b, $output2)); // read cert from a filename string
19 var_dump(openssl_x509_export($d, $output4)); // read cert from a resource
29 var_dump(openssl_x509_export_to_file($b, $outfilename)); // read cert from a filename string
31 var_dump(openssl_x509_export_to_file($d, $outfilename)); // read cert from a resource
51 Warning: openssl_x509_export(): cannot get cert from parameter 1 in %s on line %d
55 Warning: openssl_x509_export(): cannot get cert from parameter 1 in %s on line %d
61 Warning: openssl_x509_export_to_file(): cannot get cert from parameter 1 in %s on line %d
65 Warning: openssl_x509_export_to_file(): cannot get cert from parameter 1 in %s on line %d

Completed in 34 milliseconds

12345678910>>...53