Home
last modified time | relevance | path

Searched refs:from (Results 76 – 100 of 1369) sorted by relevance

12345678910>>...55

/PHP-5.4/ext/reflection/tests/
H A DReflectionClass_getStaticPropertyValue_001.phpt22 echo "Retrieving static values from A:\n";
30 echo "\nRetrieving static values from B:\n";
37 echo "\nRetrieving non-existent values from A with no default value:\n";
54 Retrieving static values from A:
61 Retrieving static values from B:
67 Retrieving non-existent values from A with no default value:
/PHP-5.4/ext/standard/tests/streams/
H A Dstream_get_meta_data_socket_variation1.phpt22 echo "\n\nRead a line from the client, causing data to be buffered:\n";
26 echo "\n\nRead 3 bytes of data from the client:\n";
30 echo "\n\nClose the server side socket and read the remaining data from the client:\n";
59 Read a line from the client, causing data to be buffered:
78 Read 3 bytes of data from the client:
97 Close the server side socket and read the remaining data from the client:
H A Dstream_get_meta_data_socket_variation4.phpt22 echo "\n\nRead a line from the client:\n";
26 echo "\n\nClose the server side socket and read the remaining data from the client:\n";
57 Read a line from the client:
76 Close the server side socket and read the remaining data from the client:
/PHP-5.4/ext/standard/tests/general_functions/
H A Dbug25038.phpt8 throw new Exception("This is an exception from bar({$x}).");
30 This is an exception from bar(first try).
31 This is an exception from bar(second try).
/PHP-5.4/ext/standard/tests/dir/
H A Ddir_variation7.phpt27 * remove the execute permission from the parent dir and test dir() on child dir
28 * 1) remove write & execute permission from the 1st parent and test dir()
29 * 2) remove execute permission from 2nd parent and test dir()
32 echo "*** Testing dir() : remove execute permission from the parent dir ***\n";
53 // remove the write and execute permisson from sub parent
59 // remove the execute permisson from parent dir, allowing all permission for sub dir
85 *** Testing dir() : remove execute permission from the parent dir ***
/PHP-5.4/ext/bz2/tests/
H A D003.phpt31 string(251) "ing up from the heart of the desert
33 Rising up from the heat of the desert
35 Rising up from the heart of the desert
37 Rising up from the heat of the desert
/PHP-5.4/ext/pgsql/tests/
H A D27large_object_oid.phpt17 echo "create LO from int\n";
25 echo "create LO from string\n";
44 create LO from int
45 create LO from string
H A D28large_object_import_oid.phpt17 echo "import LO from int\n";
25 echo "import LO from string\n";
45 import LO from int
46 import LO from string
/PHP-5.4/ext/oci8/tests/
H A Drefcur_prefetch_2.phpt29 open cur1 for select * from refcurtest order by c1;
56 // Steps to Fetch from PHP . For every sub-test,the cursor is bound and then executed.
66 // Steps to Fetch from PL/SQL . For every sub-test,the cursor is bound and then executed.
103 // Fetch from PHP
109 echo "Fetch Row from PHP\n";
115 // Fetch from PL/SQL
120 echo "Fetch Row from PL/SQL\n";
125 $sql_stmt = "select value from v\$mystat a,v\$statname c where
126 a.statistic#=c.statistic# and c.name='SQL*Net roundtrips to/from client'";
210 Fetch Row from PHP
[all …]
/PHP-5.4/ext/interbase/tests/
H A D006.phpt57 $sel = ibase_query("select * from test6 where iter = ?", $iter);
122 ibase_query("delete from test6");
133 "select iter from test6 where v_char = ?", $v_char)) ||
139 "select iter from test6 where v_date = ?", $v_date)) ||
145 "select iter from test6 where v_decimal = ?", $v_decimal)) ||
151 "select iter from test6 where v_integer = ?", $v_integer)) ||
157 "select iter from test6 where v_numeric = ?", $v_numeric)) ||
163 "select iter from test6 where v_smallint = ?", $v_smallint)) ||
169 "select iter from test6 where v_varchar = ?", $v_varchar)) ||
180 ibase_query("delete from test6");
[all …]
/PHP-5.4/ext/standard/tests/array/
H A Dend.phpt53 // remove first element from array
54 echo "\n-- Remove first element from array --\n";
58 // remove last element from array, rewind and check end()
59 echo "\n-- Remove last element from array --\n";
66 echo "\n-- Remove any element from array apart from first and last element --\n";
195 -- Remove first element from array --
198 -- Remove last element from array --
202 -- Remove any element from array apart from first and last element --
H A Dend_64bit.phpt53 // remove first element from array
54 echo "\n-- Remove first element from array --\n";
58 // remove last element from array, rewind and check end()
59 echo "\n-- Remove last element from array --\n";
66 echo "\n-- Remove any element from array apart from first and last element --\n";
196 -- Remove first element from array --
199 -- Remove last element from array --
203 -- Remove any element from array apart from first and last element --
/PHP-5.4/ext/pdo_oci/tests/
H A Dpdo_oci_attr_prefetch_2.phpt16 $s = $dbh->prepare("select '' as myempty, null as mynull from dual", array(PDO::ATTR_PREFETCH => 10…
22 $s = $dbh->prepare("select dummy from dual" );
29 $s = $dbh->prepare("select '' as myempty, null as mynull from dual", array(PDO::ATTR_PREFETCH => 0)…
30 $s = $dbh->prepare("select dummy from dual" );
/PHP-5.4/ext/pdo_mysql/tests/
H A Dpdo_mysql_stmt_fetch_serialize.phpt69 return 'Data from serialize';
98 …printf("\nUsing PDO::FETCH_CLASS|PDO::FETCH_SERIALIZE to fetch the object from DB and unserialize …
104 printf("\nUsing PDO::FETCH_CLASS to fetch the object from DB and unserialize it...\n");
131 myclass::unserialize('Data from serialize')
137 Using PDO::FETCH_CLASS|PDO::FETCH_SERIALIZE to fetch the object from DB and unserialize it...
138 myclass::unserialize('C:7:"myclass":19:{Data from serialize}')
144 Using PDO::FETCH_CLASS to fetch the object from DB and unserialize it...
145 myclass::__set(myobj, 'C:7:"myclass":19:{Data from serialize}')
151 %unicode|string%(38) "C:7:"myclass":19:{Data from serialize}"
H A Dbug_33689.phpt19 var_dump($db->query('SELECT * from test'));
20 foreach ($db->query('SELECT * from test') as $row) {
24 $stmt = $db->prepare('SELECT * from test');
45 %unicode|string%(18) "SELECT * from test"
H A Dpdo_mysql_get_attribute.phpt37 …O::setAttribute(int attribute, mixed value) has changed the type of value from %s to %s, test will…
80 Read options from the named option file instead of from my.cnf.
83 … Read options from the named group from my.cnf or the file specified with MYSQL_READ_DEFAULT_FILE.
105 [001] Call to PDO::setAttribute(int attribute, mixed value) has changed the type of value from inte…
/PHP-5.4/tests/classes/
H A Dproperty_recreate_protected.phpt22 echo "Unset and recreate a protected property from property's declaring class scope:\n";
27 echo "\nUnset and recreate a protected property from subclass:\n";
39 Unset and recreate a protected property from property's declaring class scope:
45 Unset and recreate a protected property from subclass:
H A Dimplicit_instantiation_001.phpt42 Warning: Creating default object from empty value in %s on line 18
46 Warning: Creating default object from empty value in %s on line 22
50 Warning: Creating default object from empty value in %s on line 26
56 Warning: Creating default object from empty value in %s on line 18
60 Warning: Creating default object from empty value in %s on line 22
64 Warning: Creating default object from empty value in %s on line 26
70 Warning: Creating default object from empty value in %s on line 18
74 Warning: Creating default object from empty value in %s on line 22
78 Warning: Creating default object from empty value in %s on line 26
/PHP-5.4/ext/openssl/tests/
H A D021.phpt51 Warning: openssl_csr_sign(): cannot get cert from parameter 2 in %s on line %d
54 Warning: openssl_csr_sign(): cannot get private key from parameter 3 in %s on line %d
63 Warning: openssl_csr_sign(): cannot get CSR from parameter 1 in %s on line %d
66 Warning: openssl_csr_sign(): cannot get CSR from parameter 1 in %s on line %d
69 Warning: openssl_csr_sign(): cannot get cert from parameter 2 in %s on line %d
74 Warning: openssl_csr_sign(): cannot get private key from parameter 3 in %s on line %d
/PHP-5.4/ext/mbstring/libmbfl/mbfl/
H A Dmbfilter.h125 const mbfl_encoding *from; member
129 MBFLAPI extern mbfl_buffer_converter * mbfl_buffer_converter_new(enum mbfl_no_encoding from, enum m…
130 MBFLAPI extern mbfl_buffer_converter * mbfl_buffer_converter_new2(const mbfl_encoding *from, const …
207 mbfl_substr(mbfl_string *string, mbfl_string *result, int from, int length);
213 mbfl_strcut(mbfl_string *string, mbfl_string *result, int from, int length);
225 mbfl_strimwidth(mbfl_string *string, mbfl_string *marker, mbfl_string *result, int from, int width);
/PHP-5.4/ext/spl/examples/
H A Dautoload.inc13 * Tries to load class $classname from directory $dir.
31 * Loads classes automatically from include_path as given by ini or from
/PHP-5.4/ext/standard/
H A Dcyr_convert.c204 static char * php_convert_cyr_string(unsigned char *str, int length, char from, char to TSRMLS_DC) in php_convert_cyr_string() argument
213 switch (toupper((int)(unsigned char)from)) in php_convert_cyr_string()
231 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unknown source charset: %c", from); in php_convert_cyr_string()
/PHP-5.4/ext/sockets/tests/
H A Dsocket_sentto_recvfrom_unix.phpt21 socket_recvfrom($socket, $buf, 12, 0, $from, $port); // cause warning
39 $from = "";
40 var_dump(socket_recvfrom($socket, $buf, 0, 0, $from)); // expect false
41 $bytes_received = socket_recvfrom($socket, $buf, 12, 0, $from);
44 die('An error occurred while receiving from the socket');
/PHP-5.4/ext/spl/tests/
H A DarrayObject_setIteratorClass_error1.phpt46 Warning: ArrayObject::setIteratorClass() expects parameter 1 to be a class name derived from Iterat…
51 Warning: ArrayObject::setIteratorClass() expects parameter 1 to be a class name derived from Iterat…
55 string(113) "ArrayObject::__construct() expects parameter 3 to be a class name derived from Iterato…
56 string(105) "ArrayObject::__construct() expects parameter 3 to be a class name derived from Iterato…
/PHP-5.4/ext/standard/tests/strings/
H A Dstrtr_variation4.phpt5 /* Prototype : string strtr(string $str, string $from[, string $to]);
13 * corresponding translation pair of chars for 'from', 'to' & 'replace_pairs' arguments
35 $from = "";
47 var_dump( strtr($str, $from, $to) );

Completed in 38 milliseconds

12345678910>>...55