本文整理汇总了PHP中FileUploader::saveUploadedFileToManiaPlanetServer方法的典型用法代码示例。如果您正苦于以下问题:PHP FileUploader::saveUploadedFileToManiaPlanetServer方法的具体用法?PHP FileUploader::saveUploadedFileToManiaPlanetServer怎么用?PHP FileUploader::saveUploadedFileToManiaPlanetServer使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类FileUploader
的用法示例。
在下文中一共展示了FileUploader::saveUploadedFileToManiaPlanetServer方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: replaceFilename
}
// Fonction de rappel pour le remplacement des caractères spéciaux
function replaceFilename($str)
{
return Str::replaceChars($str);
}
// Jeu
if (SERVER_VERSION_NAME == 'TmForever') {
$queries = array('insert' => 'InsertChallenge', 'add' => 'AddChallenge', 'type' => $type);
} else {
$queries = array('insert' => 'InsertMap', 'add' => 'AddMap', 'type' => $type);
}
// Taille max
if (AdminServConfig::SIZE_LIMIT == 'auto') {
$sizeLimit1 = intval(ini_get('post_max_size')) * 1024 * 1024;
$sizeLimit2 = intval(ini_get('upload_max_filesize')) * 1024 * 1024;
$sizeLimit = min($sizeLimit1, $sizeLimit2);
} else {
$sizeLimit = intval(AdminServConfig::SIZE_LIMIT) * 1024 * 1024;
}
// Enregistrement du fichier
$result = FileUploader::saveUploadedFileToManiaPlanetServer($client, $path, $queries, AdminServConfig::$ALLOWED_EXTENSIONS, $sizeLimit, 'replaceFilename');
// Sauvegarde du MatchSettings
if ($mset && SERVER_MATCHSET && $type != 'local' && isset($result['success']) && $result['success'] == true) {
if (!$client->query('SaveMatchSettings', $mapDirectoryPath . SERVER_MATCHSET)) {
$result['error'] = '[' . $client->getErrorCode() . '] ' . $client->getErrorMessage();
}
}
}
$client->Terminate();
echo htmlspecialchars(json_encode($result), ENT_NOQUOTES);