Searched refs:postname (Results 1 – 5 of 5) sorted by relevance
/php-src/ext/curl/ |
H A D | curl_file.c | 31 zend_string *fname, *mime = NULL, *postname = NULL; in curlfile_ctor() local 38 Z_PARAM_STR_OR_NULL(postname) in curlfile_ctor() 47 if (postname) { in curlfile_ctor() 48 …_update_property_str(curl_CURLFile_class, Z_OBJ_P(cf), "postname", sizeof("postname")-1, postname); in curlfile_ctor() 125 zend_string *data, *postname, *mime = NULL; in ZEND_METHOD() local 132 Z_PARAM_STR(postname) in ZEND_METHOD() 138 …operty_str(curl_CURLStringFile_class, Z_OBJ_P(object), "postname", sizeof("postname")-1, postname); in ZEND_METHOD()
|
H A D | curl_file.stub.php | 10 public string $postname = ""; variable in CURLFile 33 public string $postname; variable in CURLStringFile 36 …public function __construct(string $data, string $postname, string $mime = "application/octet-stre… argument
|
H A D | curl_file_arginfo.h | 27 ZEND_ARG_TYPE_INFO(0, postname, IS_STRING, 0)
|
/php-src/ext/curl/tests/ |
H A D | curl_string_file_upload.phpt | 8 function testcurl($ch, $postname, $data, $mime = null) 12 $file = new CURLStringFile($data, $postname); 14 $file = new CURLStringFile($data, $postname, $mime); 38 var_dump($file->postname); 66 $postname =& $file->postname;
|
H A D | curl_file_upload.phpt | 8 function testcurl($ch, $name, $mime = '', $postname = '') 10 if(!empty($postname)) { 11 $file = new CurlFile($name, $mime, $postname);
|
Completed in 6 milliseconds