Home
last modified time | relevance | path

Searched refs:text (Results 26 – 50 of 598) sorted by relevance

12345678910>>...24

/PHP-5.6/ext/standard/tests/strings/
H A Dhebrev_basic.phpt7 * Description: Convert logical Hebrew text to visual text
13 $hebrew_text = "The hebrev function converts logical Hebrew text to visual text.\nThe function trie…
22 string(109) ".The hebrev function converts logical Hebrew text to visual text
25 string(109) "to visual text
26 Hebrew text
H A Dhebrev_variation2.phpt7 * Description: Convert logical Hebrew text to visual text
96 string(109) ".The hebrev function converts logical Hebrew text to visual text
111 string(109) ".The hebrev function converts logical Hebrew text to visual text
115 string(109) ".The hebrev function converts logical Hebrew text to visual text
119 string(109) ".The hebrev function converts logical Hebrew text to visual text
142 string(109) "text
144 text
178 string(109) ".The hebrev function converts logical Hebrew text to visual text
205 string(109) ".The hebrev function converts logical Hebrew text to visual text
220 string(109) ".The hebrev function converts logical Hebrew text to visual text
[all …]
H A Dstrip_tags_basic2.phpt15 $string = "<html><p>hello</p><b>world</b><a href=\"#fragment\">Other text</a></html><?php echo hell…
44 string(33) "<html>helloworldOther text</html>"
46 string(33) "<html>helloworldOther text</html>"
48 string(27) "<p>hello</p>worldOther text"
50 string(27) "<p>hello</p>worldOther text"
52 string(44) "helloworld<a href="#fragment">Other text</a>"
54 string(44) "helloworld<a href="#fragment">Other text</a>"
56 string(20) "helloworldOther text"
58 string(20) "helloworldOther text"
60 string(64) "<html><p>hello</p>world<a href="#fragment">Other text</a></html>"
H A Dbug39621.phpt8 $replace = "any text";
16 $replace = "any text";
24 $replace = "any text";
32 $replace = "any text";
43 string(8) "any text"
44 string(8) "any text"
H A Dhebrevc_basic.phpt7 * Description: Convert logical Hebrew text to visual text
13 $hebrew_text = "The hebrevc function converts logical Hebrew text to visual text.\nThis function is…
22 string(239) ".The hebrevc function converts logical Hebrew text to visual text<br />
28 string(317) "to visual text<br />
29 Hebrew text<br />
H A Dstrtr_variation2.phpt24 text & @()
32 "text & @()",
37 'text & @()',
72 string(10) "text i als"
73 string(10) "text & @()"
81 string(10) "text i als"
82 string(10) "text & @()"
86 text i als"
89 text & @()"
H A Dbug53319.phpt6 $str = '<br /><br />USD<input type="text"/><br/>CDN<br><input type="text" />';
14 string(47) "USD<input type="text"/>CDN<input type="text" />"
/PHP-5.6/ext/standard/tests/http/
H A Dbug61548.phpt23 "data://text/plain,HTTP/1.1 201\r\nLocation: /foo\r\n\r\n",
35 do_test("First:1\nSecond:2\nContent-type: text/plain");
36 do_test("First:1\nSecond:2\nContent-type: text/plain\n");
38 do_test("First:1\nContent-type:text/plain\nSecond:2");
39 do_test("First:1\nContent-type:text/plain\nSecond:2\n");
50 Content-type: text/plain
64 Content-type: text/plain
78 Content-type: text/plain
92 Content-type:text/plain
105 Content-type:text/plain
[all …]
/PHP-5.6/ext/spl/tests/
H A Dbug45216.phpt9 file_put_contents($file, 'text 0<div class="tested">text 1</div>');
21 string(12) "text 0text 1"
22 string(12) "text 0text 1"
/PHP-5.6/Zend/tests/
H A Dclosure_047.phpt6 function replace_variables($text, $params) {
8 preg_replace_callback( '/(\?)/', function($matches) use (&$params, &$text) {
10 $text = preg_replace( '/(\?)/', array_shift( $params ), $text, 1 );
12 }, $text );
14 return $text;
H A Dclosure_048.phpt6 function replace_variables($text, $params) {
8 $c = function($matches) use (&$params, &$text) {
9 $text = preg_replace( '/(\?)/', array_shift( $params ), $text, 1 );
12 preg_replace_callback( '/(\?)/', $c, $text );
14 return $text;
H A Dhalt_compiler2.phpt5 $text = "<?php echo 'test'; var_dump(__COMPILER_HALT_OFFSET__); __HALT_COMPILER(); ?>
7 file_put_contents(dirname(__FILE__) . '/test1.php', $text);
8 $text = "<?php echo 'test2'; var_dump(__COMPILER_HALT_OFFSET__); __HALT_COMPILER(); ?>
10 file_put_contents(dirname(__FILE__) . '/test2.php', $text);
/PHP-5.6/ext/standard/tests/file/
H A Dstream_rfc2397_002.phpt15 'data://text/plain,',
16 'data://text/plain;foo,',
17 'data://text/plain;foo=bar,',
18 'data://text/plain;foo=bar;bla,',
19 'data://text/plain;foo=bar;base64,',
20 'data://text/plain;foo=bar;bar=baz',
88 string(10) "text/plain"
102 string(18) "data://text/plain,"
111 string(10) "text/plain"
136 string(10) "text/plain"
[all …]
H A Dbug44034.phpt9 $urls[] = "data://text/plain,foo\r\nbar\r\n";
10 $urls[] = "data://text/plain,\r\nfoo\r\nbar\r\n";
11 $urls[] = "data://text/plain,foo\r\nbar";
19 data://text/plain,foo\r\nbar\r\n
26 data://text/plain,\r\nfoo\r\nbar\r\n
35 data://text/plain,foo\r\nbar
/PHP-5.6/ext/dom/tests/
H A DDOMNode_normalize_basic.phpt16 * Calculate the number of title text nodes (1).
17 * Add another text node to title. Calculate the number of title text nodes (2).
18 * Normalize author. Calculate the number of title text nodes (2).
19 * Normalize title. Calculate the number of title text nodes (1).
33 $text = $doc->createTextNode('This is the first title');
34 $title->appendChild($text);
39 // add a second text node to title
40 $text = $doc->createTextNode('This is the second title');
41 $title->appendChild($text);
53 // should concatenate first and second title text nodes
H A DDOMText_appendData_basic.phpt15 $text = $document->createElement('text');
16 $root->appendChild($text);
19 $text->appendChild($textnode);
38 <root><text>data&gt;&lt;&amp;"</text></root>
/PHP-5.6/Zend/tests/traits/
H A Dbug60717.phpt10 function text($text);
17 function text($text) {}
24 abstract function text($text);
30 abstract function text($text);
/PHP-5.6/ext/pdo_sqlite/tests/
H A Dbug33841.phpt12 $db->exec('CREATE TABLE test (text)');
14 $stmt = $db->prepare("INSERT INTO test VALUES ( :text )");
15 $stmt->bindParam(':text', $name);
19 $stmt = $db->prepare("UPDATE test SET text = :text ");
20 $stmt->bindParam(':text', $name);
/PHP-5.6/tests/lang/
H A Dbug21600.phpt19 function bar($text){
20 return $text;
23 function fubar($text){
24 $text = &$text;
25 return $text;
/PHP-5.6/ext/standard/tests/filters/
H A Dchunked_001.phpt13 "data://text/plain,0\r\n",
14 "data://text/plain,2\r\nte\r\n2\r\nst\r\n0\r\n",
15 "data://text/plain,2\nte\n2\nst\n0\n",
16 "data://text/plain,2;a=1\nte\n2;a=2;b=3\r\nst\n0\n",
17 "data://text/plain,2\nte\n2\nst\n0\na=b\r\nc=d\n\r\n",
18 "data://text/plain,1f\n0123456789abcdef0123456789abcde\n1\nf\n0\n",
19 "data://text/plain,1E\n0123456789abcdef0123456789abcd\n2\nef\n0\n",
/PHP-5.6/ext/ctype/
H A Dctype.c49 ZEND_ARG_INFO(0, text)
53 ZEND_ARG_INFO(0, text)
57 ZEND_ARG_INFO(0, text)
61 ZEND_ARG_INFO(0, text)
65 ZEND_ARG_INFO(0, text)
69 ZEND_ARG_INFO(0, text)
73 ZEND_ARG_INFO(0, text)
77 ZEND_ARG_INFO(0, text)
81 ZEND_ARG_INFO(0, text)
85 ZEND_ARG_INFO(0, text)
[all …]
/PHP-5.6/ext/intl/tests/
H A Ddateformat_parse.phpt74 Input text : Sunday, September 18, 2039 4:06:40 PM PT ; DF = 0; TF = 0
77 Input text : Wednesday, December 17, 1969 6:40:00 PM PT ; DF = 0; TF = 0
83 Input text : December 18, 1969 8:49:59 AM PST ; DF = 1; TF = 0
86 Input text : 12/18/69 8:49 AM ; DF = 3; TF = 3
89 Input text : 19691218 08:49 AM ; DF = 3; TF = 3
93 Input text : Sunday, September 18, 2039 4:06:40 PM PT ; DF = 0; TF = -1
96 Input text : Sunday, September 18, 2039 4:06:40 PM PT ; DF = 0; TF = 3
100 Input text : December 18, 1969 8:49:59 AM PST ; DF = 1; TF = -1
103 Input text : December 18, 1969 8:49:59 AM PST ; DF = 1; TF = 3
107 Input text : 12/18/69 8:49 AM ; DF = 3; TF = 1
[all …]
/PHP-5.6/ext/xmlwriter/tests/
H A DOO_003.phpt2 XMLWriter: libxml2 XML Writer, membuffer, flush, text, attribute
15 $xw->text("attr1_value");
19 $xw->text("attr2_value");
22 $xw->text("Test text for tag1");
36 <tag1 attr1="attr1_value" attr2="attr2_value">Test text for tag1<tag2/></tag1>
/PHP-5.6/ext/pcre/tests/
H A D006.phpt8 $text = '[CODE]&lt;td align=&quot;$stylevar[right]&quot;&gt;[/CODE]';
9 …ght)\](((?R)|[^[]+?|\[)*)\[/\\1\]#siU', '#\[(right)\](((?R)|[^[]+?|\[)*)\[/\\1\]#siU'), '', $text);
10 var_dump($text);
13 $result = preg_replace('#\[(right)\](((?R)|[^[]+?|\[)*)\[/\\1\]#siU', '', $text);
14 var_dump($text);
/PHP-5.6/ext/xmlrpc/libxmlrpc/
H A Dxml_to_dandarpc.c91 XMLRPC_SetValueString(xCurrent, el->text.str, el->text.len); in xml_element_to_DANDARPC_REQUEST_worker()
94 XMLRPC_SetValueInt(xCurrent, atoi(el->text.str)); in xml_element_to_DANDARPC_REQUEST_worker()
97 XMLRPC_SetValueBoolean(xCurrent, atoi(el->text.str)); in xml_element_to_DANDARPC_REQUEST_worker()
100 XMLRPC_SetValueDouble(xCurrent, atof(el->text.str)); in xml_element_to_DANDARPC_REQUEST_worker()
103 XMLRPC_SetValueDateTime_ISO8601(xCurrent, el->text.str); in xml_element_to_DANDARPC_REQUEST_worker()
107 base64_decode_xmlrpc(&buf, el->text.str, el->text.len); in xml_element_to_DANDARPC_REQUEST_worker()
150 XMLRPC_RequestSetMethodName(request, el->text.str); in xml_element_to_DANDARPC_REQUEST_worker()
210 simplestring_add(&elem_val->text, buf); in DANDARPC_to_xml_element_worker()
215 simplestring_add(&elem_val->text, buf); in DANDARPC_to_xml_element_worker()
220 simplestring_add(&elem_val->text, buf); in DANDARPC_to_xml_element_worker()
[all …]

Completed in 29 milliseconds

12345678910>>...24