/PHP-5.3/ext/xmlrpc/tests/ |
H A D | bug40576.phpt | 24 <params> 30 </params> 33 <params> 39 </params> 42 <params> 48 </params> 51 <params> 57 </params> 60 <params> 66 </params> [all …]
|
H A D | bug40576_64bit.phpt | 24 <params> 30 </params> 33 <params> 39 </params> 42 <params> 48 </params> 51 <params> 57 </params> 60 <params> 66 </params> [all …]
|
H A D | bug18916.phpt | 10 $params = date("Ymd\TH:i:s", time()); 11 xmlrpc_set_type($params, 'datetime'); 12 echo xmlrpc_encode($params); 17 <params> 23 </params>
|
H A D | 001.phpt | 19 <params> 25 </params> 31 <params> 37 </params> 46 <params> 52 </params>
|
H A D | bug50761.phpt | 10 <params><param><value><array><data> 13 <member><name>params</name><value><array><data><value><string>A</string> 18 <member><name>params</name><value><array><data><value><string>B</string> 21 </data></array></value></param></params> 24 function testA($methodName, $params, $var){ return "C"; } 25 function testB($methodName, $params, $var){ return "D"; } 36 <params> 63 </params>
|
H A D | bug50285.phpt | 8 function test1($func, $params) { 12 function test2($func, $params) { 16 function test3($func, $params) { 20 function test4($func, $params) { 30 <params /> 44 <params /> 58 <params /> 72 <params />
|
H A D | bug37057.phpt | 9 <params> 20 </params> 30 <params> 41 </params>
|
H A D | bug42736.phpt | 16 …e>GetProducts</methodName><params><param><value><dateTime.iso8601>20060922T14:26:19</dateTime.iso8… 34 <params> 53 </params>
|
H A D | bug45226.phpt | 23 <params> 36 </params> 41 <params> 54 </params>
|
/PHP-5.3/ext/curl/tests/ |
H A D | bug27023.phpt | 20 $params = array('file' => '@' . __DIR__ . '/curl_testdata1.txt'); 21 curl_setopt($ch, CURLOPT_POSTFIELDS, $params); 24 $params = array('file' => '@' . __DIR__ . '/curl_testdata1.txt;type=text/plain'); 25 curl_setopt($ch, CURLOPT_POSTFIELDS, $params); 28 $params = array('file' => '@' . __DIR__ . '/curl_testdata1.txt;filename=foo.txt'); 29 curl_setopt($ch, CURLOPT_POSTFIELDS, $params); 32 $params = array('file' => '@' . __DIR__ . '/curl_testdata1.txt;type=text/plain;filename=foo.txt'); 33 curl_setopt($ch, CURLOPT_POSTFIELDS, $params); 36 $params = array('file' => '@' . __DIR__ . '/curl_testdata1.txt;filename=foo.txt;type=text/plain'); 37 curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
|
/PHP-5.3/Zend/tests/ |
H A D | bug54013.phpt | 10 $params = func_get_args(); 18 $params = $reflectionClass->getMethod('b')->getParameters(); 20 var_dump($params[0], $params[1]);
|
/PHP-5.3/ext/sqlite/libsqlite/src/ |
H A D | os.c | 1161 ParamBlockRec params; 1398 ParamBlockRec params; local 1401 memset(¶ms, 0, sizeof(params)); 1413 PBUnlockRangeSync(¶ms); 1419 PBUnlockRangeSync(¶ms); 1506 ParamBlockRec params; local 1507 memset(¶ms, 0, sizeof(params)); 1610 ParamBlockRec params; local 1611 memset(¶ms, 0, sizeof(params)); 1619 PBUnlockRangeSync(¶ms); [all …]
|
/PHP-5.3/ext/reflection/tests/ |
H A D | closures_003.phpt | 9 $params = $method->getParameters (); 11 $method = $params[0]->getDeclaringFunction (); 12 unset ($params);
|
H A D | ReflectionParameter_export_error2.phpt | 11 $params = $reflect->getParameters(); 13 foreach($params as $key => $value) { 21 foreach($params as $key => $value) {
|
H A D | ReflectionParameter_getPosition_basic.phpt | 12 $params = $reflect->getParameters(); 13 foreach($params as $key => $value) {
|
H A D | ReflectionClass_getConstant_error.phpt | 2 ReflectionClass::getConstant() - bad params 10 echo "Check invalid params:\n"; 21 Check invalid params:
|
H A D | bug26695.phpt | 16 $params = $methods[0]->getParameters(); 18 $class = $params[0]->getClass();
|
H A D | ReflectionParameter_toString_basic.phpt | 11 $params = $reflect->getParameters(); 12 foreach($params as $key => $value) {
|
/PHP-5.3/ext/standard/tests/file/ |
H A D | userfilters.phpt | 17 echo "params: {$this->params}\n"; 36 params: testuserfilter
|
/PHP-5.3/ext/pdo/ |
H A D | pdo_sql_parser.c | 441 HashTable *params; in pdo_parse_params() local 507 params = stmt->bound_params; in pdo_parse_params() 516 …if (params && bindno != zend_hash_num_elements(params) && stmt->supports_placeholders == PDO_PLACE… in pdo_parse_params() 544 ret = zend_hash_index_find(params, plc->bindno, (void**) ¶m); in pdo_parse_params() 546 ret = zend_hash_find(params, plc->pos, plc->len, (void**) ¶m); in pdo_parse_params() 748 HashTable *params = stmt->bound_params; 759 if(params) { 760 zend_hash_internal_pointer_reset(params); 770 zend_hash_move_forward(params); 785 if(!params) { [all …]
|
H A D | pdo_sql_parser.re | 88 HashTable *params; 154 params = stmt->bound_params; 156 /* Do we have placeholders but no bound params */ 163 …if (params && bindno != zend_hash_num_elements(params) && stmt->supports_placeholders == PDO_PLACE… 191 ret = zend_hash_index_find(params, plc->bindno, (void**) ¶m); 395 HashTable *params = stmt->bound_params; 406 if(params) { 407 zend_hash_internal_pointer_reset(params); 417 zend_hash_move_forward(params); 432 if(!params) { [all …]
|
/PHP-5.3/ext/sockets/tests/ |
H A D | socket_set_option_rcvtimeo.phpt | 4 -wrong params 5 -set/get params comparison 20 //wrong params
|
H A D | socket_set_option_sndtimeo.phpt | 4 -wrong params 5 -set/get params comparison 20 //wrong params
|
/PHP-5.3/ext/mysqli/tests/ |
H A D | mysqli_stmt_bind_param_call_user_func.phpt | 47 $params = array( 52 if (!call_user_func_array('mysqli_stmt_bind_param', $params)) 76 $params = array( 104 $params = array( 131 $params = array( 159 $params = array( 188 $params = array( 217 $params = array( 245 $params = array( 299 $params = array( [all …]
|
/PHP-5.3/ext/readline/ |
H A D | readline.c | 461 zval *params[3]; in _readline_completion_cb() local 466 params[0]=_readline_string_zval(text); in _readline_completion_cb() 467 params[1]=_readline_long_zval(start); in _readline_completion_cb() 468 params[2]=_readline_long_zval(end); in _readline_completion_cb() 470 …if (call_user_function(CG(function_table), NULL, _readline_completion, &_readline_array, 3, params… in _readline_completion_cb() 486 zval_ptr_dtor(¶ms[i]); in _readline_completion_cb() 532 zval *params[1]; in php_rl_callback_handler() local 538 params[0] = _readline_string_zval(the_line); in php_rl_callback_handler() 540 call_user_function(CG(function_table), NULL, _prepped_callback, &dummy, 1, params TSRMLS_CC); in php_rl_callback_handler() 542 zval_ptr_dtor(¶ms[0]); in php_rl_callback_handler()
|