Home
last modified time | relevance | path

Searched refs:from (Results 51 – 75 of 1434) sorted by relevance

12345678910>>...58

/PHP-5.5/ext/oci8/tests/
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.5/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));
H A Dbug_44861.phpt30 $from = 'FROM DUAL';
33 $from = '';
37 $query = "SELECT 'row1' AS r $from UNION SELECT 'row2' $from UNION SELECT 'row3' $from UNION SELECT…
57 $res = $db->prepare("SELECT ? $from", $aParams);
/PHP-5.5/ext/standard/tests/strings/
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.5/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
/PHP-5.5/ext/sockets/tests/
H A Dsocket_sentto_recvfrom_ipv6_udp-win32.phpt21 socket_recvfrom($socket, $buf, 12, 0, $from, $port); // cause warning
37 $from = "";
40 socket_recvfrom($socket, $buf, 12, 0, $from); // cause warning
41 $bytes_received = socket_recvfrom($socket, $buf, 12, 0, $from, $port);
43 die('An error occurred while receiving from the socket');
47 echo "Received $buf from remote address $from and remote port $port" . PHP_EOL;
59 Received Ping! from remote address ::1 and remote port 1223
/PHP-5.5/Zend/tests/
H A Dbug55086.phpt8 public function hello() { return 'hello from t1'; }
12 public function hello() { return 'hello from t2'; }
35 hello from t1
36 hello from t1
/PHP-5.5/ext/standard/tests/file/
H A Dfgets_socket_variation2.phpt38 echo "Write data from the file:\n";
45 echo "\nRead lines from the client\n";
53 echo "\nClose the server side socket and read the remaining data from the client\n";
63 Write data from the file:
66 Read lines from the client
68 Close the server side socket and read the remaining data from the client
H A Dfgetcsv_variation23.phpt7 Description: Gets line from file pointer and parse for CSV fields
10 /* Testing fgetcsv() to read from an empty file */
12 echo "*** Testing fgetcsv() : reading from file which is having zero content ***\n";
14 // try reading from file which is having zero content
39 *** Testing fgetcsv() : reading from file which is having zero content ***
/PHP-5.5/ext/standard/tests/array/
H A Darray_column_basic.phpt8 * Returns an array containing all the values from
13 /* Array representing a possible record set returned from a database */
32 echo "-- first_name column from recordset --\n";
35 echo "-- id column from recordset --\n";
38 echo "-- last_name column from recordset, keyed by value from id column --\n";
41 echo "-- last_name column from recordset, keyed by value from first_name column --\n";
141 -- first_name column from recordset --
150 -- id column from recordset --
159 -- last_name column from recordset, keyed by value from id column --
168 -- last_name column from recordset, keyed by value from first_name column --
H A Darray_shift_variation4.phpt11 * Test popping elements from a sub-array and popping an array from an array
25 echo "---- Pop array from array:\n";
31 echo "---- Pop element from array within array:\n";
77 ---- Pop array from array:
93 ---- Pop element from array within array:
H A Darray_splice_variation3.phpt29 echo "absolute offset - absolute length - cut from end\n";
77 absolute offset - absolute length - cut from beginning
118 absolute offset - absolute length - cut from middle
159 absolute offset - absolute length - cut from end
323 absolute offset - relative length - cut from beginning
364 absolute offset - relative length - cut from middle
487 relative offset - absolute length - cut from beginning
528 relative offset - absolute length - cut from middle
569 relative offset - absolute length - cut from end
733 relative offset - relative length - cut from beginning
[all …]
H A Drange.phpt11 echo "-- An array of elements from low to high --\n";
13 echo "\n-- An array of elements from high to low --\n";
17 echo "-- An array of elements from low to high --\n";
19 echo "\n-- An array of elements from high to low --\n";
23 echo "-- An array of elements from low to high --\n";
55 -- An array of elements from low to high --
79 -- An array of elements from high to low --
104 -- An array of elements from low to high --
128 -- An array of elements from high to low --
153 -- An array of elements from low to high --
[all …]
/PHP-5.5/ext/dom/tests/
H A DDOMDocument_validate_basic.phpt14 <!ELEMENT note (to,from,heading,body)>
16 <!ELEMENT from (#PCDATA)>
22 <from>Jani</from>
/PHP-5.5/ext/reflection/tests/
H A DReflectionMethod_setAccessible.phpt96 string(73) "Trying to invoke private method A::aPrivate() from scope ReflectionMethod"
97 string(73) "Trying to invoke private method A::aPrivate() from scope ReflectionMethod"
98 string(79) "Trying to invoke private method A::aPrivateStatic() from scope ReflectionMethod"
99 string(79) "Trying to invoke private method A::aPrivateStatic() from scope ReflectionMethod"
100 string(77) "Trying to invoke protected method A::aProtected() from scope ReflectionMethod"
101 string(77) "Trying to invoke protected method A::aProtected() from scope ReflectionMethod"
102 string(83) "Trying to invoke protected method A::aProtectedStatic() from scope ReflectionMethod"
103 string(83) "Trying to invoke protected method A::aProtectedStatic() from scope ReflectionMethod"
/PHP-5.5/ext/exif/
H A Dconfig.m45 PHP_ARG_ENABLE(exif, whether to enable EXIF (metadata from images) support,
6 [ --enable-exif Enable EXIF (metadata from images) support])
9 AC_DEFINE(HAVE_EXIF, 1, [Whether you want EXIF (metadata from images) support])
/PHP-5.5/ext/interbase/tests/
H A D005.phpt13 @ibase_query("delete from test5");
75 $res = ibase_query("select * from test5");
107 $res = ibase_query("select * from test5");
125 $res = ibase_query("select * from test5");
132 $res = ibase_query($tr_1, "select * from test5");
146 $res = ibase_query($tr_2, "select * from test5");
154 $res = ibase_query($tr_3, "select * from test5");
162 $res = ibase_query($tr_4, "select * from test5");
180 $res = ibase_query($tr_1, "select * from test5");
189 $res = ibase_query($tr_1, "select * from test5");
[all …]
/PHP-5.5/ext/iconv/tests/
H A Diconv_strlen_variation2.phpt111 Notice: iconv_strlen(): Wrong charset, conversion from `0' to `UCS-4LE' is not allowed in %s on lin…
116 Notice: iconv_strlen(): Wrong charset, conversion from `1' to `UCS-4LE' is not allowed in %s on lin…
121 Notice: iconv_strlen(): Wrong charset, conversion from `12345' to `UCS-4LE' is not allowed in %s on…
126 Notice: iconv_strlen(): Wrong charset, conversion from `-2345' to `UCS-4LE' is not allowed in %s on…
131 Notice: iconv_strlen(): Wrong charset, conversion from `10.5' to `UCS-4LE' is not allowed in %s on …
136 Notice: iconv_strlen(): Wrong charset, conversion from `-10.5' to `UCS-4LE' is not allowed in %s on…
141 Notice: iconv_strlen(): Wrong charset, conversion from `123456789000' to `UCS-4LE' is not allowed i…
146 Notice: iconv_strlen(): Wrong charset, conversion from `1.23456789E-9' to `UCS-4LE' is not allowed …
151 Notice: iconv_strlen(): Wrong charset, conversion from `0.5' to `UCS-4LE' is not allowed in %s on l…
162 Notice: iconv_strlen(): Wrong charset, conversion from `1' to `UCS-4LE' is not allowed in %s on lin…
[all …]
H A Diconv_strpos_variation4.phpt114 Notice: iconv_strpos(): Wrong charset, conversion from `0' to `UCS-4LE' is not allowed in %s on lin…
119 Notice: iconv_strpos(): Wrong charset, conversion from `1' to `UCS-4LE' is not allowed in %s on lin…
124 Notice: iconv_strpos(): Wrong charset, conversion from `12345' to `UCS-4LE' is not allowed in %s on…
129 Notice: iconv_strpos(): Wrong charset, conversion from `-2345' to `UCS-4LE' is not allowed in %s on…
134 Notice: iconv_strpos(): Wrong charset, conversion from `10.5' to `UCS-4LE' is not allowed in %s on …
139 Notice: iconv_strpos(): Wrong charset, conversion from `-10.5' to `UCS-4LE' is not allowed in %s on…
144 Notice: iconv_strpos(): Wrong charset, conversion from `123456789000' to `UCS-4LE' is not allowed i…
149 Notice: iconv_strpos(): Wrong charset, conversion from `1.23456789E-9' to `UCS-4LE' is not allowed …
154 Notice: iconv_strpos(): Wrong charset, conversion from `0.5' to `UCS-4LE' is not allowed in %s on l…
165 Notice: iconv_strpos(): Wrong charset, conversion from `1' to `UCS-4LE' is not allowed in %s on lin…
[all …]
H A Diconv_strrpos_variation3.phpt112 Notice: iconv_strrpos(): Wrong charset, conversion from `0' to `UCS-4LE' is not allowed in %s on li…
117 Notice: iconv_strrpos(): Wrong charset, conversion from `1' to `UCS-4LE' is not allowed in %s on li…
122 Notice: iconv_strrpos(): Wrong charset, conversion from `12345' to `UCS-4LE' is not allowed in %s o…
127 Notice: iconv_strrpos(): Wrong charset, conversion from `-2345' to `UCS-4LE' is not allowed in %s o…
132 Notice: iconv_strrpos(): Wrong charset, conversion from `10.5' to `UCS-4LE' is not allowed in %s on…
137 Notice: iconv_strrpos(): Wrong charset, conversion from `-10.5' to `UCS-4LE' is not allowed in %s o…
142 Notice: iconv_strrpos(): Wrong charset, conversion from `123456789000' to `UCS-4LE' is not allowed …
147 Notice: iconv_strrpos(): Wrong charset, conversion from `1.23456789E-9' to `UCS-4LE' is not allowed…
152 Notice: iconv_strrpos(): Wrong charset, conversion from `0.5' to `UCS-4LE' is not allowed in %s on …
163 Notice: iconv_strrpos(): Wrong charset, conversion from `1' to `UCS-4LE' is not allowed in %s on li…
[all …]
/PHP-5.5/ext/mbstring/libmbfl/mbfl/
H A Dmbfl_convert.h51 const mbfl_encoding *from; member
60 enum mbfl_no_encoding from; member
72 enum mbfl_no_encoding from,
85 …l_convert_filter_reset(mbfl_convert_filter *filter, enum mbfl_no_encoding from, enum mbfl_no_encod…
88 …ct mbfl_convert_vtbl * mbfl_convert_filter_get_vtbl(enum mbfl_no_encoding from, enum mbfl_no_encod…
/PHP-5.5/ext/sysvsem/tests/
H A Dsysv.phpt61 echo "Fail to retrieve Var 1 from Shared memory $shm_id, return value=$var1.\n";
69 echo "Fail to retrieve Var 2 from Shared memory $shm_id, return value=$var2.\n";
80 // remove shared memory segmant from SysV
82 echo "Shared memory successfully removed from SysV.\n";
84 echo "Fail to remove $shm_id shared memory from SysV.\n";
89 echo "semaphore removed successfully from SysV.\n";
91 echo "Fail to remove $sem_id semaphore from SysV.\n";
110 Shared memory successfully removed from SysV.
111 semaphore removed successfully from SysV.
/PHP-5.5/ext/zip/tests/
H A Dpecl12414.phpt2 Bug #12414 ( extracting files from damaged archives)
27 echo "zip_readfile could not open stream from zero length file " . $zipname . " : " .$filename;
32 echo "zip_readfile could not read from " . $zipname . " : " . $filename;
38 zip_readfile could not read from %specl12414.zip : MYLOGOV2.GFX
/PHP-5.5/ext/pcre/pcrelib/sljit/
H A DsljitConfigInternal.h292 #define SLJIT_CACHE_FLUSH(from, to) argument
300 #define SLJIT_CACHE_FLUSH(from, to) \ argument
301 sys_icache_invalidate((char*)(from), (char*)(to) - (char*)(from))
307 #define SLJIT_CACHE_FLUSH(from, to) \ argument
308 cacheflush((long)(from), (long)(to), 0)
313 #define SLJIT_CACHE_FLUSH(from, to) \ argument
314 ppc_cache_flush((from), (to))
319 #define SLJIT_CACHE_FLUSH(from, to) \ argument
320 sparc_cache_flush((from), (to))
325 #define SLJIT_CACHE_FLUSH(from, to) \ argument
[all …]

Completed in 103 milliseconds

12345678910>>...58