Home
last modified time | relevance | path

Searched refs:str (Results 251 – 275 of 763) sorted by relevance

1...<<11121314151617181920>>...31

/PHP-5.5/ext/standard/tests/general_functions/
H A Dhighlight_heredoc.phpt7 $str = '
16 highlight_string($str);
/PHP-5.5/ext/pcre/tests/
H A Dpreg_quote_error.phpt6 * proto string preg_quote(string str [, string delim_char])
15 $str = 'string_val';
18 var_dump(preg_quote($str, $delim_char, $extra_arg));
/PHP-5.5/ext/soap/tests/schema/
H A Dschema015.phpt23 test_schema($schema,'type="tns:testType"',"str");
28 …oap/encoding/"><SOAP-ENV:Body><ns1:test><testParam xsi:type="ns1:testType">str</testParam></ns1:te…
29 string(3) "str"
/PHP-5.5/ext/standard/tests/strings/
H A Daddslashes_basic.phpt5 /* Prototype : string addslashes ( string $str )
26 foreach( $str_array as $str ) {
27 var_dump( addslashes($str) );
H A Dnl2br_error.phpt5 /* Prototype : string nl2br(string $str)
18 $str = 'string_val';
20 var_dump( nl2br($str, true, $extra_arg) );
H A Dstrtr_variation8.phpt5 /* Prototype : string strtr(string $str, string $from[, string $to]);
6 string strtr(string $str, array $replace_pairs);
7 * Description: Translates characters in str using given translation tables
12 * and expected type for 'str' arguments
31 //defining 'str' argument
32 $str = "012atm";
80 var_dump( strtr($str, $replace_pairs) );
H A Dquoted_printable_decode_error.phpt5 /* Prototype : string quoted_printable_decode ( string $str )
16 $str = b"=FAwow-factor=C1=d0=D5=DD=C5=CE=CE=D9=C5=0A=
22 var_dump( quoted_printable_decode($str, $extra_arg) );
H A Dstrip_tags_error.phpt7 /* Prototype : string strip_tags(string $str [, string $allowable_tags])
21 $str = "<html>hello</html>";
24 var_dump( strip_tags($str, $allowable_tags, $extra_arg) );
H A Dstripslashes_basic.phpt5 /* Prototype : string stripslashes ( string $str )
25 foreach( $str_array as $str ) {
26 $str_addslashes = addslashes($str);
30 if( strcmp($str, $str_stripslashes) != 0 )
H A Dchunk_split_variation8.phpt2 … usage variations - different integer values for 'chunklen' with heredoc string as 'str'(Bug#42796)
9 /* Prototype : string chunk_split(string $str [, int $chunklen [, string $ending]])
16 * passing different integer values for 'chunklen' and heredoc string for 'str' to chunk_split()
19 echo "*** Testing chunk_split() : different 'chunklen' with heredoc 'str' ***\n";
23 //heredoc string as str
55 *** Testing chunk_split() : different 'chunklen' with heredoc 'str' ***
H A Dwordwrap_variation1.phpt2 Test wordwrap() function : usage variations - unexpected values for str argument
5 /* Prototype : string wordwrap ( string $str [, int $width [, string $break [, bool $cut]]] )
11 * testing wordwrap() by providing different values for str argument
78 // when $str argument is supplied with different values
83 $str = $values [$index];
85 var_dump( wordwrap($str) );
86 var_dump( wordwrap($str, $width) );
87 var_dump( wordwrap($str, $width, $break) );
91 var_dump( wordwrap($str, $width, $break, $cut) );
95 var_dump( wordwrap($str, $width, $break, $cut) );
[all …]
/PHP-5.5/ext/standard/tests/url/
H A Drawurlencode_error_001.phpt5 /* Prototype : proto string rawurlencode(string str)
21 $str = 'string_val';
23 var_dump( rawurlencode($str, $extra_arg) );
H A Durldecode_error_001.phpt5 /* Prototype : proto string urldecode(string str)
21 $str = 'string_val';
23 var_dump( urldecode($str, $extra_arg) );
H A Durlencode_error_001.phpt5 /* Prototype : proto string urlencode(string str)
21 $str = 'string_val';
23 var_dump( urlencode($str, $extra_arg) );
H A Drawurldecode_error_001.phpt5 /* Prototype : proto string rawurldecode(string str)
21 $str = 'string_val';
23 var_dump( rawurldecode($str, $extra_arg) );
H A Dbase64_decode_error_001.phpt5 /* Prototype : proto string base64_decode(string str[, bool strict])
19 $str = 'string_val';
22 var_dump( base64_decode($str, $strict, $extra_arg) );
H A Dbase64_encode_error_001.phpt5 /* Prototype : proto string base64_encode(string str)
19 $str = 'string_val';
21 var_dump( base64_encode($str, $extra_arg) );
/PHP-5.5/ext/standard/tests/filters/
H A Dbug22538.phpt19 $str = "abcdefghijklmnopqrstuvwxyz\n";
20 $str_len = strlen($str);
23 fwrite($fp, $str);
/PHP-5.5/ext/standard/tests/file/
H A Dbug39673.phpt6 $str = str_repeat("test", 3456);
9 file_put_contents($filename, $str);
/PHP-5.5/ext/bz2/tests/
H A Dwith_files.phpt11 $str = "This is a test string.\n";
13 bzwrite($bz, $str);
/PHP-5.5/ext/pgsql/tests/
H A D12pg_insert.phpt15 $fields = array('num'=>'1234', 'str'=>'AAA', 'bin'=>'BBB');
23 INSERT INTO "php_pgsql_test" ("num","str","bin") VALUES (1234,E'AAA',E'BBB');
H A D12pg_insert_9.phpt17 $fields = array('num'=>'1234', 'str'=>'AAA', 'bin'=>'BBB');
25 INSERT INTO "php_pgsql_test" ("num","str","bin") VALUES (1234,E'AAA',E'\\x424242');
/PHP-5.5/tests/output/
H A Dob_start_basic_unerasable_001.phpt14 $str = ob_get_contents();
15 var_dump($str);
/PHP-5.5/sapi/fpm/fpm/
H A Dfastcgi.c202 char *str; in fcgi_init() local
208 str = getenv("_FCGI_SHUTDOWN_EVENT_"); in fcgi_init()
209 if (str != NULL) { in fcgi_init()
216 str = getenv("_FCGI_MUTEX_"); in fcgi_init()
217 if (str != NULL) { in fcgi_init()
218 fcgi_accept_mutex = (HANDLE) atoi(str); in fcgi_init()
694 ret = safe_read(req, str, rest); in fcgi_read()
705 str += ret; in fcgi_read()
1009 memcpy(req->out_pos, str, len);
1016 memcpy(req->out_pos, str, limit);
[all …]
/PHP-5.5/ext/dom/tests/
H A DDOMDocument_saveHTML_variant2.phpt10 $str = <<<EOD
19 $d->loadHTML($str);

Completed in 22 milliseconds

1...<<11121314151617181920>>...31