Home
last modified time | relevance | path

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

12345678910>>...26

/PHP-7.1/ext/soap/tests/
H A Dserver031.phpt24 public $text;
27 $this->text = 'text'.$n;
68text xsi:type="xsd:string">text0</text></item><item xsi:type="ns1:Item"><text xsi:type="xsd:string…
/PHP-7.1/ext/gd/tests/
H A Dbug53504.phpt21 …['fontSize' => 50, 'angle' => 0, 'x' => 20, 'y' => 70, 'text' => 'AV Teg', 'exp' => [2,15, 208,15,…
22 …['fontSize' => 50, 'angle' => 90, 'x' => 70, 'y' => 350, 'text' => 'AV Teg', 'exp' => [15,-1, 15,-…
26 …['fontSize' => 100, 'angle' => 0, 'x' => 350, 'y' => 110, 'text' => 'H-Shift', 'exp' => [8,2, 386,…
29 …['fontSize' => 100, 'angle' => 0, 'x' => 350, 'y' => 220, 'text' => '-', 'exp' => [7,-37, 51,-37, …
30 …['fontSize' => 100, 'angle' => 0, 'x' => 430, 'y' => 220, 'text' => ',', 'exp' => [7,15, 21,15, 21…
31 …['fontSize' => 100, 'angle' => 0, 'x' => 510, 'y' => 220, 'text' => '.', 'exp' => [7,1, 21,1, 21,-…
32 …['fontSize' => 100, 'angle' => 0, 'x' => 590, 'y' => 220, 'text' => '|', 'exp' => [8,0, 17,0, 17,-…
33 …['fontSize' => 100, 'angle' => 0, 'x' => 670, 'y' => 220, 'text' => 'g', 'exp' => [5,29, 60,29, 60…
49 …['fontSize' => 200, 'angle' => 0, 'x' => 400, 'y' => 500, 'text' => "Big", 'exp' => [16,59, 329,59…
53 $bbox = imageftbbox($test['fontSize'], $test['angle'], $font, $test['text']);
[all …]
/PHP-7.1/ext/standard/tests/strings/
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 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 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 & @()"
/PHP-7.1/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-7.1/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-7.1/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;
/PHP-7.1/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-7.1/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-7.1/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-7.1/tests/lang/
H A Dbug21600.phpt19 function bar($text){
20 return $text;
23 function fubar($text){
24 $text = &$text;
25 return $text;
/PHP-7.1/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-7.1/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-7.1/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-7.1/ext/intl/tests/
H A Ddateformat_parse.phpt73 Input text : Sunday, September 18, 2039 4:06:40 PM PT ; DF = 0; TF = 0
76 Input text : Wednesday, December 17, 1969 6:40:00 PM PT ; DF = 0; TF = 0
82 Input text : December 18, 1969 8:49:59 AM PST ; DF = 1; TF = 0
85 Input text : 12/18/69 8:49 AM ; DF = 3; TF = 3
88 Input text : 19691218 08:49 AM ; DF = 3; TF = 3
92 Input text : Sunday, September 18, 2039 4:06:40 PM PT ; DF = 0; TF = -1
95 Input text : Sunday, September 18, 2039 4:06:40 PM PT ; DF = 0; TF = 3
99 Input text : December 18, 1969 8:49:59 AM PST ; DF = 1; TF = -1
102 Input text : December 18, 1969 8:49:59 AM PST ; DF = 1; TF = 3
106 Input text : 12/18/69 8:49 AM ; DF = 3; TF = 1
[all …]
/PHP-7.1/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-7.1/ext/pcre/tests/
H A D006.phpt9 $text = '[CODE]&lt;td align=&quot;$stylevar[right]&quot;&gt;[/CODE]';
10 …ght)\](((?R)|[^[]+?|\[)*)\[/\\1\]#siU', '#\[(right)\](((?R)|[^[]+?|\[)*)\[/\\1\]#siU'), '', $text);
11 var_dump($text);
14 $result = preg_replace('#\[(right)\](((?R)|[^[]+?|\[)*)\[/\\1\]#siU', '', $text);
15 var_dump($text);
/PHP-7.1/tests/basic/
H A Drfc1867_array_upload.phpt11 Content-Type: text/plain-file1
16 Content-Type: text/plain-file2
21 Content-Type: text/plain-file3
46 %unicode|string%(16) "text/plain-file1"
48 %unicode|string%(16) "text/plain-file2"
50 %unicode|string%(16) "text/plain-file3"

Completed in 135 milliseconds

12345678910>>...26