Home
last modified time | relevance | path

Searched refs:eol (Results 1 – 19 of 19) sorted by relevance

/php-src/ext/standard/tests/file/
H A Dbug44607.phpt5 $eol = '<EOL>';
8 $data .= $eol;
12 var_dump(strlen(stream_get_line($fd, 15000, $eol)));
13 var_dump(strlen(stream_get_line($fd, 15000, $eol)));
15 var_dump(strlen(stream_get_line($fd, 15000, $eol)));
16 var_dump(strlen(stream_get_line($fd, 15000, $eol)));
H A Dfputcsv_variation17.phpt2 fputcsv() with user provided eol
/php-src/ext/standard/tests/streams/
H A Dstream_get_line_nb.phpt23 $eol = '<EOL>';
26 var_dump(stream_get_line($sockets[1], 8192, $eol)); // Does not returns incomplete line (EOL not fo…
27 var_dump(stream_get_line($sockets[1], 8192, $eol));
29 fwrite($sockets[0], ", $eol");
30 var_dump(stream_get_line($sockets[1], 8192, $eol)); // Returns full line (EOL found)
31 var_dump(stream_get_line($sockets[1], 8192, $eol)); // Nothing to read
32 var_dump(stream_get_line($sockets[1], 8192, $eol));
35 var_dump(stream_get_line($sockets[1], strlen("incomplete line"), $eol)); // EOL not found but $leng…
38 var_dump(stream_get_line($sockets[1], 8192, $eol)); // Does not returns incomplete line (EOL not fo…
42 var_dump(stream_get_line($sockets[1], 8192, $eol)); // Does not returns incomplete line (EOL not fo…
[all …]
H A Dbug60455_02.phpt2 Bug #60455: stream_get_line and 1-line followed by eol input
/php-src/ext/spl/tests/SplFileObject/
H A Dbug68479.phpt36 string(3) "eol"
H A DSplFileObject_fputcsv_variation16.phpt2 SplFileObject::fputcsv() with user provided eol
/php-src/sapi/phpdbg/
H A Dphpdbg_prompt.h61 PHPDBG_COMMAND(eol); /* }}} */
/php-src/ext/soap/
H A Dphp_http.c1372 char *eol; in get_http_header_value_nodup() local
1382 eol = strchr(tmp, '\n'); in get_http_header_value_nodup()
1383 if (eol == NULL) { in get_http_header_value_nodup()
1384 eol = headers + headerslen; in get_http_header_value_nodup()
1385 } else if (eol > tmp) { in get_http_header_value_nodup()
1386 if (*(eol-1) == '\r') { in get_http_header_value_nodup()
1387 eol--; in get_http_header_value_nodup()
1391 while (eol > tmp && (*(eol-1) == ' ' || *(eol-1) == '\t')) { in get_http_header_value_nodup()
1392 eol--; in get_http_header_value_nodup()
1396 *len = eol - tmp; in get_http_header_value_nodup()
/php-src/ext/com_dotnet/tests/
H A Dbug66431_1.phpt37 /* trim the returned text as we'll get windows eol from a word doc. */
/php-src/ext/ftp/
H A Dftp.c1325 char *data, *eol; in ftp_readline() local
1339 for (eol = data; rcvd; rcvd--, eol++) { in ftp_readline()
1340 if (*eol == '\r') { in ftp_readline()
1341 *eol = 0; in ftp_readline()
1342 ftp->extra = eol + 1; in ftp_readline()
1343 if (rcvd > 1 && *(eol + 1) == '\n') { in ftp_readline()
1351 } else if (*eol == '\n') { in ftp_readline()
1352 *eol = 0; in ftp_readline()
1353 ftp->extra = eol + 1; in ftp_readline()
1361 data = eol; in ftp_readline()
/php-src/main/streams/
H A Dstreams.c882 const char *cr, *lf, *eol = NULL; in php_stream_locate_eol() local
902 eol = cr; in php_stream_locate_eol()
906 eol = lf; in php_stream_locate_eol()
909 eol = memchr(readptr, '\r', avail); in php_stream_locate_eol()
912 eol = memchr(readptr, '\n', avail); in php_stream_locate_eol()
915 return eol; in php_stream_locate_eol()
955 const char *eol; in _php_stream_get_line() local
959 eol = php_stream_locate_eol(stream, NULL); in _php_stream_get_line()
961 if (eol) { in _php_stream_get_line()
962 cpysz = eol - readptr + 1; in _php_stream_get_line()
/php-src/ext/spl/
H A Dspl_directory.stub.php256 …$separator = ",", string $enclosure = "\"", string $escape = "\\", string $eol = "\n"): int|false … argument
H A Dspl_directory.c2357 zend_string *eol = NULL; in PHP_METHOD() local
2359 …_NUM_ARGS(), "a|sssS", &fields, &delim, &d_len, &enclo, &e_len, &esc, &esc_len, &eol) == FAILURE) { in PHP_METHOD()
2389 ret = php_fputcsv(intern->u.file.stream, fields, delimiter, enclosure, escape, eol); in PHP_METHOD()
H A Dspl_directory_arginfo.h195 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, eol, IS_STRING, 0, "\"\\n\"")
/php-src/ext/standard/
H A Dhttp_fopen_wrapper.c95 char *eol = header_start + (lc_eol - lc_header_start); in strip_header() local
99 memmove(header_start, eol+1, eollen); in strip_header()
H A Dbasic_functions.stub.php2886 …$separator = ",", string $enclosure = "\"", string $escape = "\\", string $eol = "\n"): int|false …
H A Dbasic_functions_arginfo.h1333 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, eol, IS_STRING, 0, "\"\\n\"")
/php-src/.github/workflows/
H A Dpush.yml212 run: git config --global core.autocrlf false && git config --global core.eol lf
H A Dnightly.yml906 run: git config --global core.autocrlf false && git config --global core.eol lf

Completed in 74 milliseconds