Home
last modified time | relevance | path

Searched refs:v (Results 101 – 125 of 604) sorted by relevance

12345678910>>...25

/PHP-5.5/Zend/tests/
H A Dclosure_038.phpt9 public function __construct($v) {
10 $this->x = $v;
19 public function __construct($v) {
20 parent::__construct($v);
21 $this->x = $v*2;
H A Dclosure_039.phpt9 public function __construct($v) {
10 $this->x = $v;
19 public function __construct($v) {
20 parent::__construct($v);
21 $this->x = $v*2;
/PHP-5.5/ext/phar/tests/tar/
H A Dtar_003.phpt35 while (false !== ($v = readdir($tar))) {
36 echo (is_file($alias . '/' . $v) ? "file\n" : "dir\n");
37 echo $v . "\n";
44 while (false !== ($v = readdir($tar))) {
45 echo (is_file($alias . '/' . $v) ? "file\n" : "dir\n");
46 echo $v . "\n";
/PHP-5.5/ext/soap/interop/
H A Dtest.utility.php82 foreach ($ar1 as $k => $v) {
84 if (!compare($v,$ar2[$k])) return FALSE;
128 $v = $response->decode($return);
129 if (gettype($v) == 'array' && count($v)==1) {
130 return array_shift($v);
132 return $v;
/PHP-5.5/ext/standard/tests/strings/
H A Dhtmlspecialchars_decode_variation4.phpt19 …'Roy's height > Sam's height... \t\t 13 < 15...\n\r " double quote\f\v string…
20 '\nRoy's height &gt\t; Sam's\v height\f',
46 string(88) "Roy&#039;s height > Sam&#039;s height... \t\t 13 < 15...\n\r " double quote\f\v string …
47 string(88) "Roy&#039;s height > Sam&#039;s height... \t\t 13 < 15...\n\r " double quote\f\v string …
48 string(98) "Roy&#039;s height > Sam&#039;s height... \t\t 13 < 15...\n\r &quot; double quote\f\v st…
49 string(78) "Roy's height > Sam's height... \t\t 13 < 15...\n\r " double quote\f\v string ""
51 string(48) "\nRoy&#039;s height &gt\t; Sam&#039;s\v height\f"
52 string(48) "\nRoy&#039;s height &gt\t; Sam&#039;s\v height\f"
53 string(48) "\nRoy&#039;s height &gt\t; Sam&#039;s\v height\f"
54 string(38) "\nRoy's height &gt\t; Sam's\v height\f"
H A Dget_html_translation_table_variation1.phpt76 if (is_array($v) && count($v) > 100)
77 var_dump(count($v));
78 elseif (is_array($v)) {
79 asort($v);
80 var_dump($v);
82 var_dump($v);
86 if (is_array($v) && count($v) > 100)
87 var_dump(count($v));
89 asort($v);
90 var_dump($v);
[all …]
H A Dbug38770.phpt10 foreach (array('N','l') as $v) {
11 print_r(unpack($v, pack($v, -30000)));
H A Dchunk_split_variation9.phpt57 string(66) "This i s to t est ch unk_sp lit() with v arious endin g stri ng "
63 string(106) "This i@#$%^s to t@#$%^est ch@#$%^unk_sp@#$%^lit() @#$%^with v@#$%^arious@#$%^ endin@#$…
65 string(66) "This i s to t est ch unk_sp lit() with v arious endin g stri ng "
72 with v
84 with v
96 with v
103 string(66) "This i�s to t�est ch�unk_sp�lit() �with v�arious� endin�g stri�ng�"
107 string(106) "This i(MSG)s to t(MSG)est ch(MSG)unk_sp(MSG)lit() (MSG)with v(MSG)arious(MSG) endin(MS…
109 … string(est ch)ending string(unk_sp)ending string(lit() )ending string(with v)ending string(arious…
111 …mbers 1234(est ch)numbers 1234(unk_sp)numbers 1234(lit() )numbers 1234(with v)numbers 1234(arious)…
[all …]
/PHP-5.5/ext/standard/tests/url/
H A Dbug55273.phpt6 $v = chunk_split(base64_encode($s));
7 $r = base64_decode($v, True);
8 var_dump($v, $r);
/PHP-5.5/ext/pcntl/
H A Dphp_pcntl.h76 #define PCNTL_G(v) TSRMG(pcntl_globals_id, zend_pcntl_globals *, v) argument
78 #define PCNTL_G(v) (pcntl_globals.v)
/PHP-5.5/ext/spl/tests/
H A Drecursive_tree_iterator_setpostfix.phpt40 foreach($it as $k => $v) {
41 echo "[$k] => $v\n";
50 foreach($it as $k => $v) {
51 echo "[$k] => $v\n";
H A Darray_011.phpt7 //foreach (new ArrayIterator($a) as $k => $v)
8 foreach (new LimitIterator(new ArrayIterator($a), 1, 3) as $k => $v)
10 var_dump(array($k, $v));
/PHP-5.5/ext/mcrypt/
H A Dphp_mcrypt.h84 # define MCG(v) TSRMG(mcrypt_globals_id, zend_mcrypt_globals *, v) argument
86 # define MCG(v) (mcrypt_globals.v)
/PHP-5.5/ext/sockets/
H A Dphp_sockets.h92 #define SOCKETS_G(v) TSRMG(sockets_globals_id, zend_sockets_globals *, v) argument
94 #define SOCKETS_G(v) (sockets_globals.v)
/PHP-5.5/ext/simplexml/tests/
H A D031.phpt19 $sxe->addAttribute('v:att11', 'xxx', 'urn::test-v');
22 $sxe->addAttribute('v:att11', 'xxx', 'urn::test-v');
52 <root xmlns:s="urn::test" xmlns:t="urn::test-t" xmlns:v="urn::test-v" s:att1="b" att1="a" v:att11="…
/PHP-5.5/tests/lang/
H A DforeachLoopObjects.003.phpt16 foreach ($obj as $k=>$v) {
18 var_dump($v);
25 $v="changed.$k";
33 $v="changed.$k";
40 foreach ($obj as $v) {
47 var_dump($v);
54 foreach ($obj as &$v) {
61 var_dump($v);
67 foreach ($obj as $v) {
71 var_dump($v);
[all …]
H A DforeachLoopObjects.005.phpt17 foreach ($obj as $v) {
18 if ($v==$obj->a) {
21 var_dump($v);
31 foreach ($obj as $v) {
32 if ($v==$obj->b) {
35 var_dump($v);
H A DforeachLoopObjects.002.phpt16 var_dump($v);
17 $v="changed.$k";
24 var_dump($v);
32 var_dump($v);
47 var_dump($v);
55 var_dump($v);
71 var_dump($v);
79 var_dump($v);
150 var_dump($v);
157 var_dump($v);
[all …]
/PHP-5.5/tests/func/
H A D010.phpt33 $str .= '$v'.dechex($i).($i===($limit-1) ? '' : ',');
41 test($v'.dechex($limit-1).", '".dechex($limit-1).'\'); // last
42 test($v'.dechex($boundary).", '".dechex($boundary).'\'); //boundary
43 test($v'.dechex($boundary+1).", '".dechex($boundary+1).'\'); //boundary+1
44 test($v'.dechex($boundary-1).", '".dechex($boundary-1).'\'); //boundary-1
/PHP-5.5/ext/phar/tests/
H A Dphar_oo_009.phpt20 foreach($f as $k => $v)
22 echo "$k=>$v\n";
30 foreach($f as $k => $v)
32 echo "$k=>" . join('|', $v) . "\n";
/PHP-5.5/ext/filter/
H A Dphp_filter.h67 #define IF_G(v) TSRMG(filter_globals_id, zend_filter_globals *, v) argument
69 #define IF_G(v) (filter_globals.v)
/PHP-5.5/ext/iconv/
H A Dphp_iconv.h76 # define ICONVG(v) TSRMG(iconv_globals_id, zend_iconv_globals *, v) argument
78 # define ICONVG(v) (iconv_globals.v)
/PHP-5.5/ext/com_dotnet/
H A Dphp_com_dotnet_internal.h35 VARIANT v; member
103 WORD flags, DISPPARAMS *disp_params, VARIANT *v, int silent, int allow_noarg TSRMLS_DC);
107 WORD flags, VARIANT *v, int nargs, zval **args, int silent, int allow_noarg TSRMLS_DC);
109 WORD flags, VARIANT *v, int nargs, zval **args, int allow_noarg TSRMLS_DC);
111 WORD flags, VARIANT *v, int nargs, zval ***args TSRMLS_DC);
150 PHP_COM_DOTNET_API void php_com_variant_from_zval_with_type(VARIANT *v, zval *z, VARTYPE type, int …
151 PHP_COM_DOTNET_API void php_com_variant_from_zval(VARIANT *v, zval *z, int codepage TSRMLS_DC);
152 PHP_COM_DOTNET_API int php_com_zval_from_variant(zval *z, VARIANT *v, int codepage TSRMLS_DC);
164 PHP_COM_DOTNET_API void php_com_wrap_variant(zval *z, VARIANT *v,
/PHP-5.5/ext/mysqli/tests/
H A Dbug42378.phpt133 while ((list($k, $v) = each($expected)) && mysqli_stmt_fetch($stmt)) {
135 if ($result !== $v) {
139 gettype($v), $v,
162 foreach ($expected as $k => $v)
163 $expected[$k] = number_format(round($v), 0, '.', ',');
167 foreach ($expected as $k => $v)
168 $expected[$k] = number_format(round($v), 0, '.', ',');
172 foreach ($expected as $k => $v)
173 $expected[$k] = number_format(round($v), 0, '.', ',');
177 foreach ($expected as $k => $v)
[all …]
/PHP-5.5/ext/posix/
H A Dphp_posix.h125 # define POSIX_G(v) TSRMG(posix_globals_id, zend_posix_globals *, v) argument
127 # define POSIX_G(v) (posix_globals.v)

Completed in 39 milliseconds

12345678910>>...25