English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية
(PHP 5 >= 5.5.0)
curl_file_create — إنشاء ملف CURLFile.
CURLFile curl_file_create ( string $filename [, string $mimetype [, string $postname ]])
إنشاء ملف CURLFile لتحميل ملف.
filename
مسار ملف الملف المرفوع
mimetype
نوع ملف MIME
postname
اسم الملف.
إرجاع CURLFile.
مثال curl_file_create()
<?php /* http://example.com/upload.php: <?php var_dump($_FILES); ?> */ // إنشاء ملف CURL $ch = curl_init('http://example.com/upload.php'); // إنشاء ملف CURLFile $cfile = curl_file_create('cats.jpg', 'image/jpeg', 'test_name'); // تعيين بيانات POST $data = array('test_file' => $cfile); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, $data); // تنفيذ ملف التعليمات curl_exec($ch); ?>
هذا المثال سيقوم بطباعة:
array(1) { ["test_file"]=> array(5) { ["name"]=> string(9) "test_name" ["type"]=> string(10) "image/jpeg" ["tmp_name"]=> string(14) "/tmp/phpPC9Kbx" ["error"]=> int(0) ["size"]=> int(46334) } }