Home
last modified time | relevance | path

Searched refs:from (Results 251 – 275 of 1293) sorted by relevance

1...<<11121314151617181920>>...52

/PHP-8.0/ext/spl/tests/
H A Ddllist_004.phpt48 Exception: Can't pop from an empty datastructure
49 Exception: Can't shift from an empty datastructure
H A Ddllist_005.phpt48 Exception: Can't shift from an empty datastructure
49 Exception: Can't shift from an empty datastructure
H A Darray_007.phpt2 SPL: ArrayObject/Iterator from IteratorAggregate
7 // since they cannot be accessed from the external object which iterates
H A Ddllist_001.phpt50 Exception: Can't pop from an empty datastructure
51 Exception: Can't shift from an empty datastructure
/PHP-8.0/ext/simplexml/tests/
H A D003.phpt11 <!ENTITY included-entity "This is text included from an entity">
56 string(36) "This is text included from an entity"
/PHP-8.0/ext/oci8/tests/
H A Dbug47189.phpt15 $s = oci_parse($c, "select * from dual");
24 $s = oci_parse($c, "select * from dual");
H A Ddefine0.phpt22 $stmt = oci_parse($c, "select string from define0_tab");
38 $s2 = oci_parse($c, 'select string from define0_tab');
H A Dimp_res_field.phpt41 open c1 for select * from imp_res_field_tab_1 order by 1;
44 open c1 for select * from imp_res_field_tab_2 order by 1;
47 open c1 for select * from imp_res_field_tab_3 order by 1;
71 echo "Test 1 - can't get IRS fields from parent\n";
76 echo "\nTest 2 - can't get IRS fields from parent when fetching\n";
128 Test 1 - can't get IRS fields from parent
131 Test 2 - can't get IRS fields from parent when fetching
H A Dbug42841.phpt23 … open out_1 for select 11 from dual union all select 12 from dual union all select 13 from dual;
35 Open retCursor For 'select * from dual';
H A Dnull_byte_3.phpt17 $s = oci_parse($c, "select * from du\0al");
22 $s = oci_parse($c, "select * from dual where :bv = 'abc'");
/PHP-8.0/Zend/tests/generators/
H A Dbug71013.phpt2 Bug #71013 (Incorrect exception handler with yield from)
19 yield from $f;
/PHP-8.0/ext/zend_test/tests/
H A Dobserver_generator_03.phpt2 Observer: Generator with 'yield from'
20 yield from barResults();
/PHP-8.0/ext/xmlreader/tests/
H A D014.phpt26 // Try to set the value of the element from book1 to movie1
32 // Try to set the value of the first "num" attribute from "1" to "num attribute 1"
39 // Try to set the name of the first attribute from "num" to "number"
/PHP-8.0/ext/standard/tests/http/
H A Dbug53198.phpt7 from=teste@teste.pt
39 ini_set('from', 'junk@junk.com');
/PHP-8.0/sapi/fpm/tests/
H A Dsocket-invalid-allowed-clients.phpt31 // this is from child when starting
34 // this is from the request
/PHP-8.0/Zend/tests/
H A Dlist_keyed_evaluation_order.phpt20 // 4. Assign $b from $e[$a]
23 // 7. Assign $c from $e[$a]
/PHP-8.0/tests/lang/
H A Dinclude_variation1.phpt2 include() a file from the current script directory
H A Dinclude_variation3.phpt2 Including a file in the current script directory from eval'd code
H A Dinclude_variation2.phpt2 Including a file in the current script directory from an included function
/PHP-8.0/ext/pcre/pcre2lib/
H A Dpcre2_convert.c481 PCRE2_SPTR start = *from + 1; in convert_glob_parse_class()
518 *from = pattern; in convert_glob_parse_class()
584 PCRE2_SPTR pattern = *from; in convert_glob_parse_range()
593 *from = pattern; in convert_glob_parse_range()
604 *from = pattern; in convert_glob_parse_range()
663 *from = pattern; in convert_glob_parse_range()
671 *from = pattern; in convert_glob_parse_range()
676 pattern = *from; in convert_glob_parse_range()
704 *from = pattern; in convert_glob_parse_range()
710 *from = pattern; in convert_glob_parse_range()
[all …]
/PHP-8.0/ext/dba/libinifile/
H A Dinifile.c409 static int inifile_filter(inifile *dba, inifile *from, const key_type *key, zend_bool *found) in inifile_filter() argument
415 php_stream_seek(from->fp, 0, SEEK_SET); in inifile_filter()
417 while(inifile_read(from, &ln)) { in inifile_filter()
423 pos_curr = php_stream_tell(from->fp); in inifile_filter()
425 php_stream_seek(from->fp, pos_start, SEEK_SET); in inifile_filter()
426 if (SUCCESS != php_stream_copy_to_stream_ex(from->fp, dba->fp, pos_next - pos_start, NULL)) { in inifile_filter()
430 php_stream_seek(from->fp, pos_curr, SEEK_SET); in inifile_filter()
435 pos_next = php_stream_tell(from->fp); in inifile_filter()
444 php_stream_seek(from->fp, pos_start, SEEK_SET); in inifile_filter()
445 if (SUCCESS != php_stream_copy_to_stream_ex(from->fp, dba->fp, pos_next - pos_start, NULL)) { in inifile_filter()
/PHP-8.0/ext/tidy/tests/
H A D027.phpt8 // bug report from http://sf.net/tracker/?func=detail&atid=390963&aid=1641868&group_id=27659
29 $data = "awerawer"; // in my code, $data is downloaded from a site
/PHP-8.0/ext/standard/tests/streams/
H A Dnonblocking_stdin.phpt2 Read from non-blocking stdio stream should not error
/PHP-8.0/ext/standard/tests/array/
H A Darray_reduce_return_by_ref.phpt2 Return by reference from array_reduce() callback
/PHP-8.0/ext/pdo_oci/tests/
H A Dbug57702.phpt52 $stmt = $db->prepare('select data1, data2 from bug57702 order by id');
65 foreach($db->query("select data1 as d1, data2 as d2 from bug57702 order by id") as $row) {
74 $stmt = $db->prepare('select data1 as d3_1, data2 as d3_2 from bug57702 order by id');
91 foreach($db->query("select data1 as d4_1, data2 as d4_2 from bug57702 order by id") as $row) {
114 foreach($db->query("select data1 as d4_1, data2 as d4_2 from bug57702 order by id") as $row) {
133 foreach($db->query("select data1 as d4_1, data2 as d4_2 from bug57702 order by id") as $row) {

Completed in 44 milliseconds

1...<<11121314151617181920>>...52