Home
last modified time | relevance | path

Searched refs:str_repeat (Results 26 – 50 of 379) sorted by relevance

12345678910>>...16

/PHP-8.0/ext/standard/tests/strings/
H A Dbug27276.phpt6 $replacement = str_repeat("x", 12444);
7 $string = str_repeat("x", 9432);
H A Dbug55871.phpt26 $my_var = str_repeat('A', 40);
29 $my_var = '0' . str_repeat('A', 39);
32 $my_var = str_repeat('A', 40);
H A Dwordwrap_memory_limit_win32.phpt13 $str = str_repeat('x', 65534);
14 $str2 = str_repeat('x', 65535);
H A Dwordwrap_memory_limit.phpt13 $str = str_repeat('x', 65534);
14 $str2 = str_repeat('x', 65535);
H A Dchunk_split_variation2_32bit.phpt11 $a=str_repeat("B", 65537);
13 $c=str_repeat("B", 65537);
/PHP-8.0/ext/pcre/tests/
H A Dbug79188.phpt6 var_dump(preg_replace("//u", "", "a" . str_repeat("\u{1f612}", 10)));
8 "//u", function() { return ""; }, "a" . str_repeat("\u{1f612}", 10)));
H A Dno_jit_bug70110.phpt8 var_dump(preg_match('/(*NO_JIT)^(A{1,2}B)+$$/',str_repeat('AB',8192)));
9 var_dump(preg_match('~(*NO_JIT)(a)*~', str_repeat('a', 5431), $match))
/PHP-8.0/ext/intl/tests/
H A Dbug72061.phpt8 var_dump(grapheme_stripos(str_repeat("ABCD", 16384), "A", -201));
9 var_dump(grapheme_strpos(str_repeat("ABCD", 16384), "A", -201));
H A Dbug72533.phpt10 $ret = var_export(ut_loc_accept_http(str_repeat('x', 256)), true);
16 $ret .= var_export(ut_loc_accept_http(str_repeat('en,', 256)), true);
/PHP-8.0/ext/spl/tests/
H A Diterator_015.phpt15 echo str_repeat(' ',$this->getDepth())."<ul>\n";
20 echo str_repeat(' ',$this->getDepth())."</ul>\n";
37 echo str_repeat(' ',$rit->getDepth()+1)."$k=>$v\n";
H A Diterator_016.phpt28 echo str_repeat(' ',$this->getDepth())."<ul>\n";
33 echo str_repeat(' ',$this->getDepth())."</ul>\n";
50 echo str_repeat(' ',$rit->getDepth()+1)."$k=>$v\n";
/PHP-8.0/Zend/tests/try/
H A Dbug70228_8.phpt12 switch (str_repeat("b", 2)) {
14 return str_repeat("a", 2);
/PHP-8.0/Zend/tests/
H A Dunexpected_ref_bug.phpt12 $my_var = str_repeat("A", 64);
14 $my_var = str_repeat("A", 64);
H A Dself_and.phpt9 $s3 = str_repeat("f", 1);
10 $s4 = str_repeat("f", 2);
H A Dself_or.phpt9 $s3 = str_repeat("f", 1);
10 $s4 = str_repeat("f", 2);
H A Dself_xor.phpt9 $s3 = str_repeat("f", 1);
10 $s4 = str_repeat("f", 2);
/PHP-8.0/ext/mbstring/tests/
H A Dmb_substr_count.phpt25 $a = str_repeat("abcacba", 100);
28 $a = str_repeat("��������������", 100);
40 $a = str_repeat("abcacbabca", 100);
/PHP-8.0/ext/iconv/tests/
H A Diconv_substr-charset-length-cve-2007-4783.phpt7 $a = str_repeat('A', 99897);
8 $b = str_repeat('/', 2798349);
/PHP-8.0/ext/standard/tests/streams/
H A Dtemp_stream_seek.phpt7 fwrite($f, str_repeat("1", 738));
9 fwrite($f, str_repeat("2", 512));
/PHP-8.0/ext/hash/tests/
H A Dbug73127.phpt6 $test1 = str_repeat("\xFF", 40);
7 $test2 = str_repeat("\x00", 40);
/PHP-8.0/ext/standard/tests/network/
H A Dbug68925.phpt5 var_dump(gethostbyname(str_repeat("0", 2501)));
6 var_dump(gethostbynamel(str_repeat("0", 2501)));
/PHP-8.0/scripts/dev/
H A Dtidy.php98 return str_repeat("\t", $tabs) . str_repeat(" ", $spaces);
118 return str_repeat(" ", $indent);
/PHP-8.0/ext/zlib/tests/
H A D002.phpt7 $original = str_repeat("hallo php",4096);
14 $original = str_repeat("hallo php",4096);
/PHP-8.0/sapi/fpm/tests/
H A Dbug80849-fpm.phpt23 header('HTTP/1.1 201 ' . str_repeat('A', 1014), true);
31 ->expectHeader('Status', '201 ' . str_repeat('A', 1011));
/PHP-8.0/ext/pdo_mysql/tests/
H A Dpdo_mysql_stmt_getcolumnmeta.phpt193 test_meta($db, 400, 'CHAR(255)', str_repeat('z', 255), 'STRING', PDO::PARAM_STR);
198 test_meta($db, 440, 'BINARY(1)', str_repeat('a', 1), 'STRING', PDO::PARAM_STR);
203 test_meta($db, 480, 'TINYBLOB', str_repeat('b', 255), 'BLOB', PDO::PARAM_STR);
204 test_meta($db, 490, 'BLOB', str_repeat('b', 256), 'BLOB', PDO::PARAM_STR);
205 test_meta($db, 500, 'MEDIUMBLOB', str_repeat('b', 256), 'BLOB', PDO::PARAM_STR);
206 test_meta($db, 510, 'LONGBLOB', str_repeat('b', 256), 'BLOB', PDO::PARAM_STR);
208 test_meta($db, 520, 'TINYTEXT', str_repeat('b', 255), 'BLOB', PDO::PARAM_STR);
211 test_meta($db, 560, 'TEXT', str_repeat('b', 256), 'BLOB', PDO::PARAM_STR);
212 test_meta($db, 570, 'TEXT BINARY', str_repeat('b', 256), 'BLOB', PDO::PARAM_STR);
214 test_meta($db, 580, 'MEDIUMTEXT', str_repeat('b', 256), 'BLOB', PDO::PARAM_STR);
[all …]

Completed in 38 milliseconds

12345678910>>...16