本文整理汇总了PHP中OC_JSON::setContentTypeHeader方法的典型用法代码示例。如果您正苦于以下问题:PHP OC_JSON::setContentTypeHeader方法的具体用法?PHP OC_JSON::setContentTypeHeader怎么用?PHP OC_JSON::setContentTypeHeader使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类OC_JSON
的用法示例。
在下文中一共展示了OC_JSON::setContentTypeHeader方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: array
<?php
// Init owncloud
require_once '../../lib/base.php';
// Firefox and Konqueror tries to download application/json for me. --Arthur
OC_JSON::setContentTypeHeader('text/plain');
OC_JSON::checkLoggedIn();
if (!isset($_FILES['files'])) {
OC_JSON::error(array("data" => array("message" => "No file was uploaded. Unknown error")));
exit;
}
foreach ($_FILES['files']['error'] as $error) {
if ($error != 0) {
$errors = array(0 => $l->t("There is no error, the file uploaded with success"), 1 => $l->t("The uploaded file exceeds the upload_max_filesize directive in php.ini"), 2 => $l->t("The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form"), 3 => $l->t("The uploaded file was only partially uploaded"), 4 => $l->t("No file was uploaded"), 6 => $l->t("Missing a temporary folder"));
OC_JSON::error(array("data" => array("message" => $errors[$error])));
exit;
}
}
$files = $_FILES['files'];
$dir = $_POST['dir'];
$dir .= '/';
$error = '';
$totalSize = 0;
foreach ($files['size'] as $size) {
$totalSize += $size;
}
if ($totalSize > OC_Filesystem::free_space('/')) {
OC_JSON::error(array("data" => array("message" => "Not enough space available")));
exit;
}
$result = array();
开发者ID:Teino1978-Corp,项目名称:Teino1978-Corp-owncloud_.htaccess-,代码行数:31,代码来源:owncloud_files_ajax_upload.php
示例2:
<?php
// Init owncloud
require_once '../../lib/base.php';
OC_JSON::checkAdminUser();
OC_JSON::setContentTypeHeader();
OC_App::disable($_POST['appid']);
开发者ID:Teino1978-Corp,项目名称:Teino1978-Corp-owncloud_.htaccess-,代码行数:7,代码来源:owncloud_settings_ajax_disableapp.php
示例3: setContentTypeHeader
/**
* @brief set Content-Type header to jsonrequest
* @param array $type The contwnt type header
*/
public static function setContentTypeHeader($type = 'application/json')
{
return \OC_JSON::setContentTypeHeader($type);
}