Home
last modified time | relevance | path

Searched refs:length (Results 501 – 525 of 620) sorted by relevance

1...<<2122232425

/PHP-5.5/ext/standard/tests/file/
H A Dfgetcsv_variation25.phpt2 Test fgetcsv() : usage variations - with negative length value along with enclosure and delimiter
6 …Prototype: array fgetcsv ( resource $handle [, int $length [, string $delimiter [, string $enclosu…
11 Testing fgetcsv() to read from a file when provided with negative length argument
15 echo "*** Testing fgetcsv() : with negative length value ***\n";
78 // use the right delimiter and enclosure with negative length
94 *** Testing fgetcsv() : with negative length value ***
H A Dfgetcsv_variation27.phpt2 Test fgetcsv() : usage variations - with negative length value along with delimiter and no enclosure
6 …Prototype: array fgetcsv ( resource $handle [, int $length [, string $delimiter [, string $enclosu…
11 Testing fgetcsv() to read from a file when provided with negative length argument
15 echo "*** Testing fgetcsv() : with negative length value ***\n";
78 // use the right delimiter and enclosure with negative length
94 *** Testing fgetcsv() : with negative length value ***
H A Dfgetcsv_variation28.phpt2 Test fgetcsv() : usage variations - with negative length value along with neither enclosure and nor…
6 …Prototype: array fgetcsv ( resource $handle [, int $length [, string $delimiter [, string $enclosu…
11 Testing fgetcsv() to read from a file when provided with negative length argument
15 echo "*** Testing fgetcsv() : with negative length value ***\n";
78 // use the right delimiter and enclosure with negative length
94 *** Testing fgetcsv() : with negative length value ***
H A Dfread_variation1.phpt6 Prototype: string fread ( resource $handle [, int $length] );
7 Description: reads up to length bytes from the file pointer referenced by handle.
8 Reading stops when up to length bytes have been read, EOF (end of file) is
25 $expect_size : Expected data length
H A Dfgetcsv_variation6.phpt2 Test fgetcsv() : usage variations - with length less than line size
6 …Prototype: array fgetcsv ( resource $handle [, int $length [, string $delimiter [, string $enclosu…
11 Testing fgetcsv() to read from a file when provided with the length argument
15 echo "*** Testing fgetcsv() : with length less than line size ***\n";
77 // use length as less than the actual size of the line
99 *** Testing fgetcsv() : with length less than line size ***
H A Dfgetcsv_variation14.phpt6 …Prototype: array fgetcsv ( resource $handle [, int $length [, string $delimiter [, string $enclosu…
H A Dfgetcsv_variation26.phpt6 …Prototype: array fgetcsv ( resource $handle [, int $length [, string $delimiter [, string $enclosu…
64 // use the right delimiter and enclosure with max length
H A Dfgetcsv_variation13.phpt7 …Prototype: array fgetcsv ( resource $handle [, int $length [, string $delimiter [, string $enclosu…
H A Dfgetcsv_variation20.phpt6 …Prototype: array fgetcsv ( resource $handle [, int $length [, string $delimiter [, string $enclosu…
/PHP-5.5/
H A DCODING_STANDARDS44 that PHP holds the length property of each string, and that it
46 a way so that they'll take advantage of the length property, both
49 doing so, should return that new length, so it doesn't have to be
H A Dserver-tests.php1432 $length = strlen($wanted_re);
1433 while($startOffset < $length) {
1440 $end = $start = $length;
1444 $start = $end = $length;
H A DREADME.NEW-OUTPUT-API72 Retrieving output buffers length:
/PHP-5.5/ext/phar/tests/
H A Dphar_extract.phpt142 Invalid argument, extraction path must be non-zero length
/PHP-5.5/sapi/thttpd/
H A Dthttpd_patch151 …, int status, char* title, char* encodings, char* extraheads, char* type, int length, time_t mod );
152 … status, char* title, char* encodings, char* extraheads, char* type, int length, time_t mod, const…
246 …c, int status, char* title, char* encodings, char* extraheads, char* type, int length, time_t mod )
247 … status, char* title, char* encodings, char* extraheads, char* type, int length, time_t mod, const…
261 hc->bytes_to_send = length;
329 - (long) hc->init_byte_loc, (long) hc->end_byte_loc, length,
338 + smart_str_append_long(&s, length);
344 else if ( length >= 0 )
347 - "Content-Length: %d\r\n", length );
350 + smart_str_append_long(&s, length);
[all …]
/PHP-5.5/ext/pcre/pcrelib/
H A DHACKING149 variable length. The first unit in an item contains an opcode, and the length
158 larger than 2 is necessary only when patterns whose compiled length is greater
214 OP_MARK is followed by the mark name, preceded by a one-unit length, and
251 these are two-unit items; in UTF-8 or UTF-16 modes, the length is variable; in
523 start of the following item, and another count giving the length of this item.
/PHP-5.5/ext/mssql/
H A Dphp_mssql.c953 int length; local
956 length=dbdatlen(mssql_ptr->link,offset);
958 while (length>0 && data[length-1] == ' ') { /* nuke trailing whitespace */
959 length--;
962 ZVAL_STRINGL(result, data, length, 1);
/PHP-5.5/ext/dom/
H A Ddom_iterators.c69 ret->length = 0; in create_notation()
/PHP-5.5/ext/xmlrpc/libxmlrpc/
H A Dxmlrpc.c275 static int date_to_ISO8601 (time_t value, char *buf, int length) { in date_to_ISO8601() argument
282 return strftime (buf, length, "%Y-%m-%dT%H:%M:%SZ", tm); in date_to_ISO8601()
284 return strftime(buf, length, "%Y%m%dT%H:%M:%SZ", tm); in date_to_ISO8601()
/PHP-5.5/main/
H A Drfc1867.c876 event_formdata.length = new_val_len;
897 event_formdata.length = value_len;
1021 event_file_data.length = blen;
H A Dphp_ini.c361 int length = strlen(filename); in php_load_zend_extension_cb() local
363 if (IS_ABSOLUTE_PATH(filename, length)) { in php_load_zend_extension_cb()
H A Dsnprintf.c581 #define PREFIX( str, length, ch ) *--str = ch ; length++ ; has_prefix = YES argument
/PHP-5.5/Zend/
H A Dzend_API.c1291 ZEND_API int add_assoc_stringl_ex(zval *arg, const char *key, uint key_len, char *str, uint length,… in add_assoc_stringl_ex() argument
1296 ZVAL_STRINGL(tmp, str, length, duplicate); in add_assoc_stringl_ex()
1374 ZEND_API int add_index_stringl(zval *arg, ulong index, const char *str, uint length, int duplicate)… in add_index_stringl() argument
1379 ZVAL_STRINGL(tmp, str, length, duplicate); in add_index_stringl()
1457 ZEND_API int add_next_index_stringl(zval *arg, const char *str, uint length, int duplicate) /* {{{ … in add_next_index_stringl() argument
1462 ZVAL_STRINGL(tmp, str, length, duplicate); in add_next_index_stringl()
1490 ZVAL_STRINGL(tmp, str, length, duplicate); in add_get_assoc_stringl_ex()
1529 ZEND_API int add_get_index_stringl(zval *arg, ulong index, const char *str, uint length, void **des… in add_get_index_stringl() argument
1534 ZVAL_STRINGL(tmp, str, length, duplicate); in add_get_index_stringl()
1682 …ringl_ex(zval *arg, const char *key, uint key_len, const char *str, uint length, int duplicate TSR… in add_property_stringl_ex() argument
[all …]
H A Dzend_compile.c252 int length = strlen(new_compiled_filename); in zend_set_compiled_filename() local
258 p = estrndup(new_compiled_filename, length); in zend_set_compiled_filename()
2419 zend_uint length; in zend_do_build_full_name() local
2433 result->u.constant.value.str.len = length; in zend_do_build_full_name()
2440 result->u.constant.value.str.len = length; in zend_do_build_full_name()
3235 if (UNEXPECTED(offset - buf + size >= length)) { \
3236 length += size + 1; \
3237 buf = erealloc(buf, length); \
3243 zend_uint length = 1024; in zend_get_function_declaration() local
3245 offset = buf = (char *)emalloc(length * sizeof(char)); in zend_get_function_declaration()
[all …]
/PHP-5.5/ext/date/lib/
H A Dparse_date.c4128 int length = 0; in scan() local
5338 int length = 0; in scan() local
6571 int length = 0; in scan() local
10204 int length = 0; in scan() local
11002 int length = 0; in scan() local
11656 int length = 0; in scan() local
11775 int length = 0; in scan() local
12595 int length = 0; in scan() local
12647 int length = 0; in scan() local
24960 int length; in timelib_parse_from_format() local
[all …]
/PHP-5.5/ext/mysqlnd/
H A Dmysqlnd_structs.h69 size_t length; member
82 unsigned long length; /* Width of column (create length) */ member
732 …TMT * const stmt, unsigned int param_num, const char * const data, unsigned long length TSRMLS_DC);

Completed in 160 milliseconds

1...<<2122232425