Home
last modified time | relevance | path

Searched refs:l (Results 101 – 125 of 297) sorted by relevance

12345678910>>...12

/PHP-8.1/ext/standard/tests/array/
H A Darsort_variation5.phpt22 array ('l' => "lemoN", 'O' => "Orange", 'b' => "banana", 'a' => "apple", 'Te' => "Test",
169 ["l"]=>
197 ["l"]=>
225 ["l"]=>
H A Dasort_variation5.phpt22 array ('l' => "lemoN", 'O' => "Orange", 'b' => "banana", 'a' => "apple", 'Te' => "Test",
175 ["l"]=>
203 ["l"]=>
231 ["l"]=>
/PHP-8.1/ext/mysqlnd/
H A Dmysqlnd_commands.c92 …ret = send_command(conn->payload_decoder_factory, COM_INIT_DB, (const zend_uchar*) db.s, db.l, FAL… in MYSQLND_METHOD()
110 mysqlnd_set_persistent_string(&conn->connect_or_select_db, db.s, db.l, conn->persistent); in MYSQLND_METHOD()
173 *message = zend_string_init(stats_header.message.s, stats_header.message.l, 0); in MYSQLND_METHOD()
313 …ret = send_command(conn->payload_decoder_factory, COM_QUERY, (const zend_uchar*) query.s, query.l,… in MYSQLND_METHOD()
339 …d(conn->payload_decoder_factory, COM_CHANGE_USER, (const zend_uchar*) payload.s, payload.l, silent, in MYSQLND_METHOD()
381 …mmand(conn->payload_decoder_factory, COM_STMT_PREPARE, (const zend_uchar*) query.s, query.l, FALSE, in MYSQLND_METHOD()
404 (const unsigned char *) payload.s, payload.l, FALSE, in MYSQLND_METHOD()
426 …and(conn->payload_decoder_factory, COM_STMT_FETCH, (const zend_uchar*) payload.s, payload.l, FALSE, in MYSQLND_METHOD()
477 …>payload_decoder_factory, COM_STMT_SEND_LONG_DATA, (const zend_uchar*) payload.s, payload.l, FALSE, in MYSQLND_METHOD()
608 const size_t passwd_len = password.l; in MYSQLND_METHOD()
[all …]
H A Dmysqlnd_libmysql_compat.h89 #define mysql_stmt_prepare(s,q,l) mysqlnd_stmt_prepare((s), (q), (l)) argument
95 #define mysql_stmt_send_long_data(s,p,d,l) mysqlnd_stmt_send_long_data((s), (p), (d), (l)) argument
/PHP-8.1/ext/standard/tests/file/
H A Dfgetc_basic.phpt379 string(1) "l"
400 string(1) "l"
406 string(1) "l"
427 string(1) "l"
433 string(1) "l"
454 string(1) "l"
460 string(1) "l"
481 string(1) "l"
487 string(1) "l"
508 string(1) "l"
[all …]
H A Dfputcsv.phpt47 while($l=fgetcsv($fp))
49 $res[] = join(',',$l);
H A Dfputcsv_variation15.phpt49 while($l=fgetcsv($fp, 0, ',', '"', '/'))
51 $res[] = join(',',$l);
/PHP-8.1/ext/phar/tests/files/
H A Dfrontcontroller2.phar6 …����G�����ж���������a.jpg����G�����ж���������a.phps����G���l�`�������hiohio<?php…
H A Dfrontcontroller.phar6 …��� �~G�����ж���������a.jpg��� �~G�����ж���������a.phps��� �~G���l�`������� ���index.p…
H A Dfrontcontroller5.phar6 …����b�H�����ж���������a.jpg����b�H�����ж���������a.phps����b�H���l�`�������hiohio<?php…
H A Dfrontcontroller6.phar6 …����b�H�����ж���������a.jpg����b�H�����ж���������a.phps����b�H���l�`�������hiohio<?php…
H A Dfrontcontroller9.phar8 �k+����������a.jpg����� H�����b�����������a.php����� H���l�`������� ���fronk.gronk����� …
/PHP-8.1/ext/phar/tests/cache_list/files/
H A Dfrontcontroller2.phar6 …����G�����ж���������a.jpg����G�����ж���������a.phps����G���l�`�������hiohio<?php…
H A Dfrontcontroller.phar6 …��� �~G�����ж���������a.jpg��� �~G�����ж���������a.phps��� �~G���l�`������� ���index.p…
H A Dfrontcontroller6.phar6 …����b�H�����ж���������a.jpg����b�H�����ж���������a.phps����b�H���l�`�������hiohio<?php…
H A Dwrite3.phar10 g��ja{��lH$������GBMB
H A Dfrontcontroller9.phar8 �k+����������a.jpg����� H�����b�����������a.php����� H���l�`������� ���fronk.gronk����� …
/PHP-8.1/ext/spl/tests/
H A DSplFileObject_fputcsv.phpt45 while($l=fgetcsv($fp))
47 $res[] = join(',',$l);
/PHP-8.1/ext/standard/tests/strings/
H A Dbug38770.phpt10 foreach (array('N','l') as $v) {
/PHP-8.1/ext/phar/tests/
H A Dphar_oo_008.phpt54 $l = $v->fgetcsv();
55 echo $v->key() . "=>" . join('|', $l) . "\n";
/PHP-8.1/ext/intl/tests/
H A Dformatter_fail.phpt19 function crt($t, $l, $s) {
23 return new NumberFormatter($l, $s);
31 return NumberFormatter::create($l, $s);
39 return numfmt_create($l, $s);
/PHP-8.1/Zend/
H A Dzend_string.h161 static zend_always_inline zend_string *zend_string_safe_alloc(size_t n, size_t m, size_t l, bool pe… in zend_string_safe_alloc() argument
163 …zend_string *ret = (zend_string *)safe_pemalloc(n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), … in zend_string_safe_alloc()
168 ZSTR_LEN(ret) = (n * m) + l; in zend_string_safe_alloc()
284 …end_string *zend_string_safe_realloc(zend_string *s, size_t n, size_t m, size_t l, bool persistent) in zend_string_safe_realloc() argument
290 …ret = (zend_string *)safe_perealloc(s, n, m, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(l)), persisten… in zend_string_safe_realloc()
291 ZSTR_LEN(ret) = (n * m) + l; in zend_string_safe_realloc()
296 ret = zend_string_safe_alloc(n, m, l, persistent); in zend_string_safe_realloc()
297 memcpy(ZSTR_VAL(ret), ZSTR_VAL(s), MIN((n * m) + l, ZSTR_LEN(s)) + 1); in zend_string_safe_realloc()
/PHP-8.1/sapi/cgi/tests/
H A D007.phpt13 var_dump(`"$php" -n -s -w -l`);
/PHP-8.1/ext/opcache/tests/
H A Dbug65510.phpt12 $m = array("l", "a", "r", "u", "e", "n", "c", "e");
/PHP-8.1/Zend/tests/
H A Dbug70748.phpt2 Bug #70748 (Segfault in ini_lex () at Zend/zend_ini_scanner.l)

Completed in 40 milliseconds

12345678910>>...12