本文整理匯總了PHP中UploadField::upload方法的典型用法代碼示例。如果您正苦於以下問題:PHP UploadField::upload方法的具體用法?PHP UploadField::upload怎麽用?PHP UploadField::upload使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類UploadField
的用法示例。
在下文中一共展示了UploadField::upload方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: upload
/**
* Action to handle upload of a single file
*
* @param SS_HTTPRequest $request
* @return SS_HTTPResponse
* @return SS_HTTPResponse
*/
public function upload(SS_HTTPRequest $request)
{
// Find the first set of upload data that looks like it came from an
// UploadField.
// NOTE(Jake): There is only the SecurityID and the 'upload' data as this is done
// in it's own AJAX request, not sent along with all the other data.
foreach ($request->postVars() as $key => $value) {
// todo(Jake): Test SS 3.1 compatibility
// NOTE(Jake): Only tested in SS 3.2, UploadField::upload data may not look like this in 3.1...
if ($value && isset($value['name']) && isset($value['type']) && isset($value['tmp_name'])) {
// NOTE(Jake): UploadField requires this FormField to be the correct name so it can retrieve
// the file information from postVar. So detect the first set of data that seems
// like upload info and use it.
$this->setName($key);
break;
}
}
return parent::upload($request);
}