Home
last modified time | relevance | path

Searched refs:postname (Results 1 – 5 of 5) sorted by relevance

/PHP-8.3/ext/curl/
H A Dcurl_file.c31 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 Dcurl_file.stub.php10 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 Dcurl_file_arginfo.h27 ZEND_ARG_TYPE_INFO(0, postname, IS_STRING, 0)
/PHP-8.3/ext/curl/tests/
H A Dcurl_string_file_upload.phpt8 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 Dcurl_file_upload.phpt8 function testcurl($ch, $name, $mime = '', $postname = '')
10 if(!empty($postname)) {
11 $file = new CurlFile($name, $mime, $postname);

Completed in 12 milliseconds