Home
last modified time | relevance | path

Searched refs:from (Results 226 – 250 of 1543) sorted by relevance

12345678910>>...62

/PHP-7.0/ext/standard/tests/file/
H A Dfscanf_variation54.phpt8 Description: Parses input from a file according to a format
15 echo "*** Test fscanf(): to read objects from a file ***\n";
68 *** Test fscanf(): to read objects from a file ***
H A Dpopen_pclose_basic.phpt24 echo "-- Testing popen(): reading from the pipe --\n";
33 echo "-- Testing popen(): reading from a file using 'cat' command --\n";
77 -- Testing popen(): reading from the pipe --
79 -- Testing popen(): reading from a file using 'cat' command --
H A Dfscanf_variation51.phpt8 Description: Parses input from a file according to a format
15 echo "*** Test fscanf(): to read from a file opened in write only mode ***\n";
40 // reading the values from file using different integer formats
69 *** Test fscanf(): to read from a file opened in write only mode ***
/PHP-7.0/ext/pdo/tests/
H A Dbug_65946.phpt22 // this is a bug, to be addressed separately from adding these tests to pdo_dblib
30 …$sql = "select id from (select a.*, rownum rnum from (SELECT * FROM test) a where rownum <= :limit…
/PHP-7.0/ext/standard/tests/array/
H A Darray_map_object3.phpt50 echo "-- accessing parent method from child class --\n";
53 echo "-- accessing child method from parent class --\n";
66 -- accessing parent method from child class --
75 -- accessing child method from parent class --
H A Dshuffle_basic2.phpt31 echo "\n-- return value from shuffle() function --\n";
32 var_dump( shuffle($array_arg) ); // prints the return value from shuffle() function
64 -- return value from shuffle() function --
/PHP-7.0/ext/standard/tests/strings/
H A Dstrtr_variation3.phpt5 /* Prototype : string strtr(string $str, string $from[, string $to]);
13 * corresponding translation pair of chars for 'from', 'to' & 'replace_pairs' arguments
48 $from = "\n\r\t\\";
59 var_dump( strtr($str, $from, $to) );
H A Dstrtr_basic.phpt5 /* Prototype : string strtr(string $str, string $from[, string $to]);
24 //$from and $to are of same length
29 //$from and $to are of different lengths, extra chars in the longer one are ignored
/PHP-7.0/ext/oci8/tests/
H A Dconn_attr.inc44 …echo "You appear to already have an edition in use that prevents this PHP test from running. Quer…
53 $sel_stmt="select " .$attr. " from v\$session where sid =
54 (select sid from v\$session where audsid =
119 $sel_stmt = "select sys_context('USERENV', 'CURRENT_EDITION_NAME') from dual";
129 $sel_stmt="select " .$attr. " from v\$session where sid =
130 (select sid from v\$session where audsid = sys_context('userenv','sessionid')) order by 1";
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";
130 Test 1 - can't get IRS fields from parent
133 Test 2 - can't get IRS fields from parent when fetching
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');
/PHP-7.0/ext/date/tests/
H A DDateTime_clone_basic4.phpt17 echo "*** Testing clone of objects derived from DateTime class with __clone magic method***\n";
28 *** Testing clone of objects derived from DateTime class with __clone magic method***
/PHP-7.0/ext/iconv/tests/
H A Dtranslit-failure.phpt14 // Content from file is from libiconv testkit. Tested both
/PHP-7.0/ext/spl/examples/
H A Ddirectoryfilterdots.inc17 * This Iterator takes a pathname from which it creates a RecursiveDirectoryIterator
22 /** Construct from a path.
/PHP-7.0/Zend/tests/traits/
H A Dbug55554d.phpt6 // Test mixed constructors from different traits, we are more strict about
31 Fatal error: ReportCollision has colliding constructor definitions coming from traits in %s on line…
/PHP-7.0/ext/openssl/tests/
H A Dopenssl_pkcs12_export_to_file_basic.phpt52 Warning: openssl_pkcs12_export_to_file(): cannot get cert from parameter 1 in %s on line %d
55 Warning: openssl_pkcs12_export_to_file(): cannot get cert from parameter 1 in %s on line %d
60 Warning: openssl_pkcs12_export_to_file(): cannot get cert from parameter 1 in %s on line %d
/PHP-7.0/ext/xmlrpc/tests/
H A Dbug45556.phpt2 Bug #45556 (Return value from callback isn't freed)
32 … message: Invalid document end] Unable to add introspection data returned from bar::test() in %s o…
/PHP-7.0/Zend/tests/generators/
H A Dbug71013.phpt2 Bug #71013 (Incorrect exception handler with yield from)
19 yield from $f;
/PHP-7.0/ext/standard/tests/http/
H A Dbug53198.phpt7 from=teste@teste.pt
39 ini_set('from', 'junk@junk.com');
/PHP-7.0/ext/standard/tests/image/
H A Dgetimagesize_jpgapp.phpt2 Test getimagesize() function : basic functionality - load APP info from jpeg.
18 * Load APP info from jpeg
/PHP-7.0/ext/dba/libinifile/
H A Dinifile.c417 static int inifile_filter(inifile *dba, inifile *from, const key_type *key, zend_bool *found) in inifile_filter() argument
423 php_stream_seek(from->fp, 0, SEEK_SET); in inifile_filter()
425 while(inifile_read(from, &ln)) { in inifile_filter()
431 pos_curr = php_stream_tell(from->fp); in inifile_filter()
433 php_stream_seek(from->fp, pos_start, SEEK_SET); in inifile_filter()
434 if (SUCCESS != php_stream_copy_to_stream_ex(from->fp, dba->fp, pos_next - pos_start, NULL)) { in inifile_filter()
438 php_stream_seek(from->fp, pos_curr, SEEK_SET); in inifile_filter()
443 pos_next = php_stream_tell(from->fp); in inifile_filter()
452 php_stream_seek(from->fp, pos_start, SEEK_SET); in inifile_filter()
453 if (SUCCESS != php_stream_copy_to_stream_ex(from->fp, dba->fp, pos_next - pos_start, NULL)) { in inifile_filter()
/PHP-7.0/ext/simplexml/tests/
H A D003.phpt11 <!ENTITY included-entity "This is text included from an entity">
57 string(36) "This is text included from an entity"
/PHP-7.0/ext/spl/tests/
H A Darray_003.phpt2 SPL: ArrayObject from object
7 // since they cannot be accessed from the external object which iterates
H A Ddllist_004.phpt50 Exception: Can't pop from an empty datastructure
51 Exception: Can't shift from an empty datastructure

Completed in 26 milliseconds

12345678910>>...62