Home
last modified time | relevance | path

Searched refs:text (Results 126 – 150 of 714) sorted by relevance

12345678910>>...29

/PHP-8.1/ext/standard/tests/file/
H A Dstream_rfc2397_005.phpt13 'data:text/plain,test',
14 'data:text/plain;charset=US-ASCII,test',
16 'data:text/plain;charset=UTF-8,Hello',
H A Dreadfile_variation3.phpt46 line of text
48 line of text
54 line of text
56 line of text
H A Dpopen_pclose_basic.phpt71 line of text
73 line of text
75 line of text
77 line of text
79 line of text
/PHP-8.1/ext/simplexml/tests/
H A D005.phpt12 Plain text.
16 Here we have some text data.
37 string(28) "Here we have some text data."
H A D003.phpt11 <!ENTITY included-entity "This is text included from an entity">
14 Plain text.
56 string(36) "This is text included from an entity"
/PHP-8.1/ext/fileinfo/tests/
H A Dfinfo_file_basic.phpt25 string(28) "text/x-php; charset=us-ascii"
26 string(22) "PHP script, ASCII text"
27 string(28) "text/plain; charset=us-ascii"
/PHP-8.1/sapi/cgi/tests/
H A Dbug81518b.phpt7 header('Content-Type: text/html');
10 Content-type: text/html;charset=UTF-8
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 D010.phpt43 Content-type: text/html; charset=UTF-8
47 Content-type: text/html; charset=UTF-8
51 Content-type: text/html; charset=UTF-8
/PHP-8.1/ext/intl/breakiterator/
H A Dbreakiterator_class.cpp126 ZVAL_COPY(&bio_new->text, &bio_orig->text); in BreakIterator_clone_obj()
159 if (Z_ISUNDEF(bio->text)) { in BreakIterator_get_debug_info()
163 Z_TRY_ADDREF(bio->text); in BreakIterator_get_debug_info()
164 zend_hash_str_update(debug_info, "text", sizeof("text") - 1, &bio->text); in BreakIterator_get_debug_info()
181 ZVAL_UNDEF(&bio->text); in breakiterator_object_init()
190 zval_ptr_dtor(&bio->text); in BreakIterator_objects_free()
H A Dbreakiterator_methods.cpp135 if (Z_ISUNDEF(bio->text)) { in PHP_METHOD()
138 ZVAL_COPY(return_value, &bio->text); in PHP_METHOD()
145 zend_string *text; in PHP_METHOD() local
149 if (zend_parse_parameters(ZEND_NUM_ARGS(), "S", &text) == FAILURE) { in PHP_METHOD()
155 ut = utext_openUTF8(ut, ZSTR_VAL(text), ZSTR_LEN(text), BREAKITER_ERROR_CODE_P(bio)); in PHP_METHOD()
166 zval_ptr_dtor(&bio->text); in PHP_METHOD()
167 ZVAL_STR_COPY(&bio->text, text); in PHP_METHOD()
/PHP-8.1/ext/tidy/tests/
H A D014.phpt7 $text = "<B>testing</I>";
8 $tidy = tidy_parse_string($text, array('show-body-only'=>true));
/PHP-8.1/ext/xmlwriter/tests/
H A DOO_008.phpt15 $xw->text('elem2*');
18 $xw->text("attr1 CDATA #required\n");
19 $xw->text('attr2 CDATA #implied');
/PHP-8.1/ext/pcre/tests/
H A Dbug77193.phpt7 $text = '{CCM:CID_2}';
16 $text
/PHP-8.1/ext/intl/tests/
H A Dbreakiter_createCodePointInstance_basic.phpt10 $text = 'ตัวอย่างข้อความ';
14 $codepoint_it->setText($text);
/PHP-8.1/sapi/cli/tests/
H A Dbug43177.phpt62 Content-type: text/html; charset=UTF-8
70 Content-type: text/html; charset=UTF-8
77 Content-type: text/html; charset=UTF-8
84 Content-type: text/html; charset=UTF-8
H A Dphp_cli_server_005.phpt18 Content-Type: text/plain
51 Content-type: text/html; charset=UTF-8
61 string(10) "text/plain"
/PHP-8.1/ext/dom/tests/
H A DDOMNode_hasChildNodes_basic.phpt25 $text = $doc->createTextNode('This is the title');
26 $title->appendChild($text);
35 var_dump($text->hasChildNodes());
/PHP-8.1/ext/oci8/tests/
H A Dlob_029.phpt41 file_put_contents($fullname1, 'Some text in the bfile 1');
42 file_put_contents($fullname2, 'Some text in the bfile 2');
43 file_put_contents($fullname3, 'Some text in the bfile 3');
126 string(24) "Some text in the bfile 1"
128 string(24) "Some text in the bfile 2"
130 string(24) "Some text in the bfile 3"
134 string(24) "Some text in the bfile 1"
/PHP-8.1/Zend/tests/
H A Dclosure_008.phpt6 function replace_spaces($text) {
10 return preg_replace_callback('/( +) /', $lambda, $text);
/PHP-8.1/ext/mbstring/tests/
H A Dmb_output_handler_runtime_ini_alteration-01.phpt11 ini_set('mbstring.http_output_conv_mimetypes', 'text');
12 header("Content-Type: text/html");
/PHP-8.1/ext/zlib/tests/
H A Dbug48725.phpt7 $text = str_repeat('0123456789abcdef', 1000);
11 fwrite($temp, $text);
/PHP-8.1/ext/xml/tests/
H A Dxml011.phpt15 $xml = '<text>start<b /> This &amp; that</text>';
68 <text><b>
/PHP-8.1/ext/iconv/tests/
H A Dbug48147.phpt7 $text = "aa\xC3\xC3\xC3\xB8aa";
8 var_dump(iconv("UTF-8", "UTF-8", $text));
9 var_dump(urlencode(iconv("UTF-8", "UTF-8//IGNORE", $text)));
/PHP-8.1/ext/tokenizer/
H A Dtokenizer.stub.php12 public string $text; variable in PhpToken
19 final public function __construct(int $id, string $text, int $line = -1, int $pos = -1) {} argument

Completed in 31 milliseconds

12345678910>>...29