Home
last modified time | relevance | path

Searched refs:text (Results 1 – 25 of 630) sorted by last modified time

12345678910>>...26

/PHP-7.4/
H A DNEWS305 . Fixed bug #81037 (PDO discards error message text from prepared
906 . Fixed bug #78221 (DOMNode::normalize() doesn't remove empty text nodes).
1432 . Fixed bug #78075 (finfo_file treats JSON file as text/plain). (Anatol)
2741 . Fixed bug #76712 (Assignment of empty string creates extraneous text node).
/PHP-7.4/ext/gd/
H A Dgd.c740 ZEND_ARG_INFO(0, text)
752 ZEND_ARG_INFO(0, text)
760 ZEND_ARG_INFO(0, text)
771 ZEND_ARG_INFO(0, text)
/PHP-7.4/ext/pgsql/
H A Dpgsql.c907 #define PHP_PQ_ERROR(text, pgsql) { \ argument
909 php_error_docref(NULL, E_WARNING, text, msgbuf); \
/PHP-7.4/ext/intl/breakiterator/
H A Dcodepointiterator_internal.cpp119 void CodePointBreakIterator::setText(const UnicodeString &text) in setText() argument
124 this->fText = utext_openConstUnicodeString(this->fText, &text, &uec); in setText()
129 void CodePointBreakIterator::setText(UText *text, UErrorCode &status) in setText() argument
135 this->fText = utext_clone(this->fText, text, FALSE, TRUE, &status); in setText()
H A Dcodepointiterator_internal.h56 virtual void setText(const UnicodeString &text);
58 virtual void setText(UText *text, UErrorCode &status);
/PHP-7.4/sapi/cgi/tests/
H A Dbug81518a.phpt8 "text/html;charset=ISO-8859-1\r\nContent-Length: 31\r\n\r\n" .
13 Content-type: text/html; charset=UTF-8
H A Dbug81518b.phpt7 header('Content-Type: text/html');
10 Content-type: text/html;charset=UTF-8
/PHP-7.4/sapi/fpm/tests/
H A Dtester.inc493 $response->expectBody($pingResponse, 'text/plain');
H A Dstatus.inc13 'plain' => 'text/plain',
14 'html' => 'text/html',
15 'xml' => 'text/xml',
/PHP-7.4/ext/fileinfo/
H A Dlibmagic.patch980 ubuf, ulen, code, type, text);
1461 * the compressed text. FIXME.
3302 ((text && (m->str_flags & FLT) == STRING_BINTEST) ||
3303 (!text && (m->str_flags & FLT) == STRING_TEXTTEST))) ||
/PHP-7.4/ext/fileinfo/tests/
H A Dfinfo_file_basic.phpt28 string(28) "text/x-php; charset=us-ascii"
29 string(%d) "PHP script, ASCII text%A"
30 string(28) "text/plain; charset=us-ascii"
/PHP-7.4/ext/date/lib/
H A Dparse_date.re225 /* The relative text table. */
/PHP-7.4/ext/ffi/
H A Dffi.g65 #define yy_text FFI_G(text)
H A Dffi_parser.c33 #define yy_text FFI_G(text)
/PHP-7.4/ext/imap/
H A Dphp_imap.c313 ZEND_ARG_INFO(0, text)
317 ZEND_ARG_INFO(0, text)
321 ZEND_ARG_INFO(0, text)
325 ZEND_ARG_INFO(0, text)
690 if(cur->text.data) in mail_free_foblist()
2549 zend_string *text; in PHP_FUNCTION() local
2572 zend_string *text; in PHP_FUNCTION() local
2595 zend_string *text; in PHP_FUNCTION() local
2618 zend_string *text; in PHP_FUNCTION() local
4412 decode = text; in PHP_FUNCTION()
[all …]
/PHP-7.4/sapi/cli/tests/
H A Dbug81305.phpt34 Content-type: text/html; charset=UTF-8
H A Dbug73630.phpt42 Content-type: text/html; charset=UTF-8
/PHP-7.4/ext/standard/
H A Dstring.c918 zend_string *text; in PHP_FUNCTION() local
928 Z_PARAM_STR(text) in PHP_FUNCTION()
935 if (ZSTR_LEN(text) == 0) { in PHP_FUNCTION()
952 newtext = zend_string_init(ZSTR_VAL(text), ZSTR_LEN(text), 0); in PHP_FUNCTION()
956 if (ZSTR_VAL(text)[current] == breakchar[0]) { in PHP_FUNCTION() local
958 } else if (ZSTR_VAL(text)[current] == ' ') { in PHP_FUNCTION() local
974 chk = (size_t)(ZSTR_LEN(text)/linelength + 1); in PHP_FUNCTION()
978 chk = ZSTR_LEN(text); in PHP_FUNCTION()
995 if (ZSTR_VAL(text)[current] == breakchar[0] in PHP_FUNCTION()
996 && current + breakchar_len < ZSTR_LEN(text) in PHP_FUNCTION()
[all …]
/PHP-7.4/ext/intl/grapheme/
H A Dgrapheme_util.c248 int32_t grapheme_split_string(const UChar *text, int32_t text_length, int boundary_array[], int bou… in grapheme_split_string() argument
261 ubrk_setText(bi, text, text_length, &status); in grapheme_split_string()
/PHP-7.4/ext/pdo_mysql/tests/
H A Dbug81037.phpt2 Bug #81037 PDO discards error message text from prepared statement
/PHP-7.4/ext/pdo_firebird/tests/
H A Dddl.phpt18 $dbh->exec("CREATE TABLE ddl (id INT NOT NULL PRIMARY KEY, text BLOB SUB_TYPE 1)");
26 var_dump($dbh->exec("INSERT INTO ddl (text) VALUES ('bla')"));
27 var_dump($dbh->exec("UPDATE ddl SET text='blabla'"));
H A Dbug_62024.phpt20 $sql = "insert into test_insert (id, text) values (?, ?)";
H A Dexecute.phpt17 $dbh->exec("CREATE TABLE ddl (id SMALLINT NOT NULL PRIMARY KEY, text VARCHAR(32),
19 $dbh->exec("INSERT INTO ddl (id,text) VALUES (1,'bla')");
/PHP-7.4/ext/ftp/
H A Dftp.c2013 char *text; in ftp_genlist() local
2074 text = (char*) (ret + lines + 1); in ftp_genlist()
2075 *entry = text; in ftp_genlist()
2079 *(text - 1) = 0; in ftp_genlist()
2080 *++entry = text; in ftp_genlist()
2082 *text++ = ch; in ftp_genlist()
/PHP-7.4/Zend/tests/
H A Dbug80972.phpt16 $string = 'Here is some text for good measure';
41 string(34) "Here is some text for good measure"

Completed in 145 milliseconds

12345678910>>...26