本文整理汇总了PHP中set_time_limit函数的典型用法代码示例。如果您正苦于以下问题:PHP set_time_limit函数的具体用法?PHP set_time_limit怎么用?PHP set_time_limit使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了set_time_limit函数的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。
示例1: downloadPackage
/**
* Downloads a package
*
* @param string $url URL of file to download
* @param string $target Download target filename [optional]
*
* @return mixed Path to downloaded package or boolean false on failure
*
* @since 11.1
*/
public static function downloadPackage($url, $target = false)
{
$config = JFactory::getConfig();
// Capture PHP errors
$track_errors = ini_get('track_errors');
ini_set('track_errors', true);
// Set user agent
$version = new JVersion();
ini_set('user_agent', $version->getUserAgent('Installer'));
$http = JHttpFactory::getHttp();
$response = $http->get($url);
if (200 != $response->code) {
JLog::add(JText::_('JLIB_INSTALLER_ERROR_DOWNLOAD_SERVER_CONNECT'), JLog::WARNING, 'jerror');
return false;
}
if ($response->headers['wrapper_data']['Content-Disposition']) {
$contentfilename = explode("\"", $response->headers['wrapper_data']['Content-Disposition']);
$target = $contentfilename[1];
}
// Set the target path if not given
if (!$target) {
$target = $config->get('tmp_path') . '/' . self::getFilenameFromURL($url);
} else {
$target = $config->get('tmp_path') . '/' . basename($target);
}
// Write buffer to file
JFile::write($target, $response->body);
// Restore error tracking to what it was before
ini_set('track_errors', $track_errors);
// Bump the max execution time because not using built in php zip libs are slow
@set_time_limit(ini_get('max_execution_time'));
// Return the name of the downloaded package
return basename($target);
}
开发者ID:houzhenggang,项目名称:cobalt,代码行数:44,代码来源:helper.php
示例2: max
/**
* Max execution time.
*
* @since 150424 Initial release.
*
* @param int|null $max Max execution time.
*
* @return int Max execution time; in seconds.
*/
public function max(int $max = null) : int
{
if (isset($max) && $max >= 0) {
@set_time_limit($max);
}
return (int) ini_get('max_execution_time');
}
开发者ID:websharks,项目名称:core,代码行数:16,代码来源:ExecTime.php
示例3: Copyright
/**
|--------------------------------------------------------------------------|
| https://github.com/Bigjoos/ |
|--------------------------------------------------------------------------|
| Licence Info: GPL |
|--------------------------------------------------------------------------|
| Copyright (C) 2010 U-232 V5 |
|--------------------------------------------------------------------------|
| A bittorrent tracker source based on TBDev.net/tbsource/bytemonsoon. |
|--------------------------------------------------------------------------|
| Project Leaders: Mindless, Autotron, whocares, Swizzles. |
|--------------------------------------------------------------------------|
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/ \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \
( U | - | 2 | 3 | 2 )-( S | o | u | r | c | e )-( C | o | d | e )
\_/ \_/ \_/ \_/ \_/ \_/ \_/ \_/ \_/ \_/ \_/ \_/ \_/ \_/ \_/
*/
function docleanup($data)
{
global $INSTALLER09, $queries, $mc1;
set_time_limit(1200);
ignore_user_abort(1);
//== Delete inactive user accounts
$secs = 350 * 86400;
$dt = TIME_NOW - $secs;
$maxclass = UC_STAFF;
sql_query("SELECT FROM users WHERE parked='no' AND status='confirmed' AND class < {$maxclass} AND last_access < {$dt}");
//== Delete parked user accounts
$secs = 675 * 86400;
// change the time to fit your needs
$dt = TIME_NOW - $secs;
$maxclass = UC_STAFF;
sql_query("SELECT FROM users WHERE parked='yes' AND status='confirmed' AND class < {$maxclass} AND last_access < {$dt}");
if ($queries > 0) {
write_log("Inactive Clean -------------------- Inactive Clean Complete using {$queries} queries--------------------");
}
if (false !== mysqli_affected_rows($GLOBALS["___mysqli_ston"])) {
$data['clean_desc'] = mysqli_affected_rows($GLOBALS["___mysqli_ston"]) . " items deleted/updated";
}
if ($data['clean_log']) {
cleanup_log($data);
}
}
开发者ID:Bigjoos,项目名称:U-232-V5,代码行数:43,代码来源:inactive_update.php
示例4: run
/**
* Standard modular run function.
*
* @return tempcode Results
*/
function run()
{
if (get_forum_type() != 'ocf') {
return new ocp_tempcode();
} else {
ocf_require_all_forum_stuff();
}
if (function_exists('set_time_limit')) {
@set_time_limit(0);
}
require_code('ocf_posts_action');
require_code('ocf_posts_action2');
// Members
$start = 0;
do {
$members = $GLOBALS['FORUM_DB']->query_select('f_members', array('id'), NULL, '', 500, $start);
foreach ($members as $member) {
ocf_force_update_member_post_count($member['id']);
$num_warnings = $GLOBALS['FORUM_DB']->query_value('f_warnings', 'COUNT(*)', array('w_member_id' => $member['id'], 'w_is_warning' => 1));
$GLOBALS['FORUM_DB']->query_update('f_members', array('m_cache_warnings' => $num_warnings), array('id' => $member['id']), '', 1);
}
$start += 500;
} while (array_key_exists(0, $members));
return new ocp_tempcode();
}
开发者ID:erico-deh,项目名称:ocPortal,代码行数:30,代码来源:ocf_members.php
示例5: batch_show
public function batch_show()
{
set_time_limit(0);
$sql = "SELECT * FROM " . DB_PREFIX . "plat_token WHERE 1 ORDER BY lastusetime";
$q = $this->db->query($sql);
$plat_token = array();
while ($row = $this->db->fetch_array($q)) {
$plat_token[$row['type']] = $row;
}
include_once ROOT_PATH . 'lib/class/share.class.php';
$this->share = new share();
$sql = "SELECT id, uid, name, group_id FROM " . DB_PREFIX . "user WHERE 1 AND status = 1 ORDER BY update_time ASC LIMIT 100";
$q = $this->db->query($sql);
while ($row = $this->db->fetch_array($q)) {
//先用授权人账号关注这个用户
$token = $plat_token[$row['group_id']];
$user_info = $this->share->get_user($row['uid'], $row['name'], $token['plat_token']);
$user_info = $user_info[0];
if ($user_info && $user_info['uid'] && !$user_info['error']) {
$avatar = array('host' => $user_info['avatar'], 'dir' => '', 'filepath' => '', 'filename' => '');
$user_info['avatar'] = $avatar;
$sql = "UPDATE " . DB_PREFIX . "user SET uid = '" . $user_info['uid'] . "', avatar = '" . serialize($avatar) . "', user_info = '" . serialize($user_info) . "' WHERE id = " . $row['id'];
$this->db->query($sql);
}
$sql = "UPDATE " . DB_PREFIX . "user SET update_time = " . TIMENOW . " WHERE id = " . $row['id'];
$this->db->query($sql);
echo $row['id'];
echo "<pre>";
print_r($user_info);
if ($user_info['error'] && $user_info['error'] != 'empty') {
break;
}
}
}
开发者ID:h3len,项目名称:Project,代码行数:34,代码来源:update_user_queue.php
示例6: dispatch
/**
* Registered callback function for the WordPress Importer
*
* Manages the three separate stages of the CSV import process
*/
function dispatch()
{
$this->header();
if (!empty($_POST['delimiter'])) {
$this->delimiter = stripslashes(trim($_POST['delimiter']));
}
if (!$this->delimiter) {
$this->delimiter = ',';
}
$step = empty($_GET['step']) ? 0 : (int) $_GET['step'];
switch ($step) {
case 0:
$this->greet();
break;
case 1:
check_admin_referer('import-upload');
if ($this->handle_upload()) {
if ($this->id) {
$file = get_attached_file($this->id);
} else {
$file = ABSPATH . $this->file_url;
}
add_filter('http_request_timeout', array($this, 'bump_request_timeout'));
if (function_exists('gc_enable')) {
gc_enable();
}
@set_time_limit(0);
@ob_flush();
@flush();
$this->import($file);
}
break;
}
$this->footer();
}
开发者ID:iplaydu,项目名称:Bob-Ellis-Shoes,代码行数:40,代码来源:tax-rates-importer.php
示例7: sync
/**
* Sync the media. Oh sync the media.
*
* @param string|null $path
* @param SyncMedia $syncCommand The SyncMedia command object, to log to console if executed by artisan.
*/
public function sync($path = null, SyncMedia $syncCommand = null)
{
set_time_limit(env('APP_MAX_SCAN_TIME', 600));
$path = $path ?: Setting::get('media_path');
$results = ['good' => [], 'bad' => [], 'ugly' => []];
// For now we only care about mp3 and ogg files.
// Support for other formats (AAC?) may be added in the future.
$files = Finder::create()->files()->name('/\\.(mp3|ogg)$/')->in($path);
foreach ($files as $file) {
$song = $this->syncFile($file);
if ($song === true) {
$results['ugly'][] = $file;
} elseif ($song === false) {
$results['bad'][] = $file;
} else {
$results['good'][] = $file;
}
if ($syncCommand) {
$syncCommand->logToConsole($file->getPathname(), $song);
}
}
// Delete non-existing songs.
$hashes = array_map(function ($f) {
return $this->getHash($f->getPathname());
}, array_merge($results['ugly'], $results['good']));
Song::whereNotIn('id', $hashes)->delete();
// Empty albums and artists should be gone as well.
$inUseAlbums = Song::select('album_id')->groupBy('album_id')->get()->lists('album_id');
$inUseAlbums[] = Album::UNKNOWN_ID;
Album::whereNotIn('id', $inUseAlbums)->delete();
$inUseArtists = Album::select('artist_id')->groupBy('artist_id')->get()->lists('artist_id');
$inUseArtists[] = Artist::UNKNOWN_ID;
Artist::whereNotIn('id', $inUseArtists)->delete();
}
开发者ID:Holdlen2DH,项目名称:koel,代码行数:40,代码来源:Media.php
示例8: generate
/**
* @param $file_name
* @return array
* @throws ApplicationException
*/
public static function generate($file_name)
{
set_time_limit(0);
$temp_file = TempFileProvider::generate("peaks", ".raw");
$command = sprintf("%s -v quiet -i %s -ac 1 -f u8 -ar 11025 -acodec pcm_u8 %s", self::$ffmpeg_cmd, escapeshellarg($file_name), escapeshellarg($temp_file));
shell_exec($command);
if (!file_exists($temp_file)) {
throw new ApplicationException("Waveform could not be generated!");
}
$chunk_size = ceil(filesize($temp_file) / self::PEAKS_RESOLUTION);
$peaks = withOpenedFile($temp_file, "r", function ($fh) use(&$chunk_size) {
while ($data = fread($fh, $chunk_size)) {
$peak = 0;
$array = str_split($data);
foreach ($array as $item) {
$code = ord($item);
if ($code > $peak) {
$peak = $code;
}
if ($code == 255) {
break;
}
}
(yield $peak - 127);
}
});
TempFileProvider::delete($temp_file);
return $peaks;
}
开发者ID:pldin601,项目名称:HomeMusic,代码行数:34,代码来源:WaveformGenerator.php
示例9: init
public static function init()
{
if (!is_admin()) {
return;
}
if (!isset($_FILES['podlove_import_tracking'])) {
return;
}
set_time_limit(10 * MINUTE_IN_SECONDS);
// allow xml+gz uploads
add_filter('upload_mimes', function ($mimes) {
return array_merge($mimes, array('xml' => 'application/xml', 'gz|gzip' => 'application/x-gzip'));
});
require_once ABSPATH . '/wp-admin/includes/file.php';
$file = wp_handle_upload($_FILES['podlove_import_tracking'], array('test_form' => false));
if ($file && (!isset($file['error']) || !$file['error'])) {
update_option('podlove_import_tracking_file', $file['file']);
if (!($file = get_option('podlove_import_tracking_file'))) {
return;
}
$importer = new \Podlove\Modules\ImportExport\Import\TrackingImporter($file);
$importer->import();
} else {
echo '<div class="error"><p>' . $file['error'] . '</p></div>';
}
}
开发者ID:johannes-mueller,项目名称:podlove-publisher,代码行数:26,代码来源:tracking_importer.php
示例10: indexAction
/**
* Data export action
*
* @return \Symfony\Component\HttpFoundation\Response
*/
public function indexAction()
{
// Export time execution depends on entities exported
ignore_user_abort(false);
set_time_limit(0);
return $this->createStreamedResponse()->send();
}
开发者ID:a2xchip,项目名称:pim-community-dev,代码行数:12,代码来源:ExportController.php
示例11: execute
protected function execute(InputInterface $input, OutputInterface $output)
{
ini_set('memory_limit', -1);
set_time_limit(0);
$this->output = $output;
$this->em = $this->getContainer()->get('doctrine')->getManager();
$siteId = (int) $input->getOption('site_id');
$this->site = $this->em->getRepository('SudouxCmsSiteBundle:Site')->find($siteId);
if (!isset($this->site)) {
throw new \Exception("Site was not found");
}
$availableFunctions = array('import_branches_from_csv');
$function = $input->getArgument('function');
if (!in_array($function, $availableFunctions)) {
throw new \Exception("Function does not exist");
}
switch ($function) {
case 'import_branches_from_csv':
$csvPath = $input->getOption('csv_path');
if (empty($csvPath)) {
throw new \Exception("Option --csv_path cannot be empty");
}
$this->importBranchesFromCsv($csvPath);
break;
}
}
开发者ID:eric19h,项目名称:turbulent-wookie,代码行数:26,代码来源:BranchCommand.php
示例12: export_csv
public function export_csv($page = 1)
{
set_time_limit(0);
$limit = ($page - 1) * intval(app_conf("BATCH_PAGE_SIZE")) . "," . intval(app_conf("BATCH_PAGE_SIZE"));
$map['ecv_type_id'] = intval($_REQUEST['ecv_type_id']);
$list = M(MODULE_NAME)->where($map)->limit($limit)->findAll();
if ($list) {
register_shutdown_function(array(&$this, 'export_csv'), $page + 1);
$ecv_value = array('sn' => '""', 'password' => '""', 'money' => '""', 'use_limit' => '""', 'begin_time' => '""', 'end_time' => '""');
if ($page == 1) {
$content = iconv("utf-8", "gbk", "序列号,密码,面额,使用数量,生效时间,过期时间");
$content = $content . "\n";
}
foreach ($list as $k => $v) {
$ecv_value['sn'] = '"' . iconv('utf-8', 'gbk', $v['sn']) . '"';
$ecv_value['password'] = '"' . iconv('utf-8', 'gbk', $v['password']) . '"';
$ecv_value['money'] = '"' . iconv('utf-8', 'gbk', format_price($v['money'])) . '"';
$ecv_value['use_limit'] = '"' . iconv('utf-8', 'gbk', $v['use_limit']) . '"';
$ecv_value['begin_time'] = '"' . iconv('utf-8', 'gbk', to_date($v['begin_time'])) . '"';
$ecv_value['end_time'] = '"' . iconv('utf-8', 'gbk', to_date($v['end_time'])) . '"';
$content .= implode(",", $ecv_value) . "\n";
}
header("Content-Disposition: attachment; filename=voucher_list.csv");
echo $content;
} else {
if ($page == 1) {
$this->error(L("NO_RESULT"));
}
}
}
开发者ID:dalinhuang,项目名称:zsh_business,代码行数:30,代码来源:EcvAction.class.php
示例13: __construct
public function __construct()
{
parent::__construct();
$this->load->helper('upload');
$this->load->model('Image');
set_time_limit(0);
}
开发者ID:sasha8-1,项目名称:instagram,代码行数:7,代码来源:UploadImage.php
示例14: docleanup
function docleanup($data)
{
global $INSTALLER09, $queries, $mc1;
set_time_limit(1200);
ignore_user_abort(1);
//== delete torrents - ????
$days = 30;
$dt = TIME_NOW - $days * 86400;
sql_query("UPDATE torrents SET flags='1' WHERE added < {$dt} AND seeders='0' AND leechers='0'") or sqlerr(__FILE__, __LINE__);
$res = sql_query("SELECT id, name FROM torrents WHERE mtime < {$dt} AND seeders='0' AND leechers='0' AND flags='1'") or sqlerr(__FILE__, __LINE__);
while ($arr = mysqli_fetch_assoc($res)) {
sql_query("DELETE files.*, comments.*, thankyou.*, thanks.*, thumbsup.*, bookmarks.*, coins.*, rating.*, xbt_files_users.* FROM xbt_files_users\n LEFT JOIN files ON files.torrent = xbt_files_users.fid\n LEFT JOIN comments ON comments.torrent = xbt_files_users.fid\n LEFT JOIN thankyou ON thankyou.torid = xbt_files_users.fid\n LEFT JOIN thanks ON thanks.torrentid = xbt_files_users.fid\n LEFT JOIN bookmarks ON bookmarks.torrentid = xbt_files_users.fid\n LEFT JOIN coins ON coins.torrentid = xbt_files_users.fid\n LEFT JOIN rating ON rating.torrent = xbt_files_users.fid\n LEFT JOIN thumbsup ON thumbsup.torrentid = xbt_files_users.fid\n WHERE xbt_files_users.fid =" . sqlesc($arr['id'])) or sqlerr(__FILE__, __LINE__);
@unlink("{$INSTALLER09['torrent_dir']}/{$arr['id']}.torrent");
write_log("Torrent " . (int) $arr['id'] . " (" . htmlsafechars($arr['name']) . ") was deleted by system (older than {$days} days and no seeders)");
}
if ($queries > 0) {
write_log("Delete Old Torrents XBT Clean -------------------- Delete Old XBT Torrents cleanup Complete using {$queries} queries --------------------");
}
if (false !== mysqli_affected_rows($GLOBALS["___mysqli_ston"])) {
$data['clean_desc'] = mysqli_affected_rows($GLOBALS["___mysqli_ston"]) . " items deleted/updated";
}
if ($data['clean_log']) {
cleanup_log($data);
}
}
开发者ID:UniversalAdministrator,项目名称:U-232-V4,代码行数:25,代码来源:delete_torrents_xbt_update.php
示例15: download_as_dataformat
/**
* Sends a formated data file to the browser
*
* @package core
* @subpackage dataformat
*
* @param string $filename The base filename without an extension
* @param string $dataformat A dataformat name
* @param array $columns An ordered map of column keys and labels
* @param Iterator $iterator An iterator over the records, usually a RecordSet
* @param function $callback An option function applied to each record before writing
* @param mixed $extra An optional value which is passed into the callback function
*/
function download_as_dataformat($filename, $dataformat, $columns, $iterator, $callback = null)
{
if (ob_get_length()) {
throw new coding_exception("Output can not be buffered before calling download_as_dataformat");
}
$classname = 'dataformat_' . $dataformat . '\\writer';
if (!class_exists($classname)) {
throw new coding_exception("Unable to locate dataformat/{$type}/classes/writer.php");
}
$format = new $classname();
// The data format export could take a while to generate...
set_time_limit(0);
// Close the session so that the users other tabs in the same session are not blocked.
\core\session\manager::write_close();
$format->set_filename($filename);
$format->send_http_headers();
$format->write_header($columns);
$c = 0;
foreach ($iterator as $row) {
if ($callback) {
$row = $callback($row);
}
if ($row === null) {
continue;
}
$format->write_record($row, $c++);
}
$format->write_footer($columns);
}
开发者ID:gabrielrosset,项目名称:moodle,代码行数:42,代码来源:dataformatlib.php
示例16: __construct
public function __construct()
{
ini_get('safe_mode') || set_time_limit(180);
parent::__construct();
$iaDbControl = $this->_iaCore->factory('dbcontrol', iaCore::ADMIN);
$this->setHelper($iaDbControl);
}
开发者ID:kamilklkn,项目名称:subrion,代码行数:7,代码来源:database.php
示例17: perform
public function perform()
{
set_time_limit(0);
$log = new DeploynautLogFile($this->args['logfile']);
$projects = DNProject::get()->filter('Name', Convert::raw2sql($this->args['projectName']));
$project = $projects->first();
$path = $project->getLocalCVSPath();
$env = $this->args['env'];
$log->write('Starting git fetch for project "' . $project->Name . '"');
// if an alternate user has been configured for clone, run the command as that user
// @todo Gitonomy doesn't seem to have any way to prefix the command properly, if you
// set 'sudo -u composer git' as the "command" parameter, it tries to run the whole
// thing as a single command and fails
$user = DNData::inst()->getGitUser();
if (!empty($user)) {
$command = sprintf('cd %s && sudo -u %s git fetch -p origin +refs/heads/*:refs/heads/* --tags', $path, $user);
$process = new \Symfony\Component\Process\Process($command);
$process->setEnv($env);
$process->setTimeout(3600);
$process->run();
if (!$process->isSuccessful()) {
throw new RuntimeException($process->getErrorOutput());
}
} else {
$repository = new Gitonomy\Git\Repository($path, array('environment_variables' => $env));
$repository->run('fetch', array('-p', 'origin', '+refs/heads/*:refs/heads/*', '--tags'));
}
$log->write('Git fetch is finished');
}
开发者ID:antons-,项目名称:deploynaut,代码行数:29,代码来源:FetchJob.php
示例18: updateEvents
public function updateEvents()
{
// date_default_timezone_set('America/Argentina/Buenos_Aires');
// $date = date('Ymd', time()) . "T" . date('hi',time()) . "00";
set_time_limit(180);
$eventos = $this->apiRequest->getEventsBySubarea(null, null);
// $eventos_json='[{"Altura":1665,"Calle":"YRIGOYEN, HIPOLITO","DescripcionCalendario":"","DescripcionEvento":"Semana Rego - Concierto de Eduardo Isaac Teatro Col\u00f3n","Destacado":false,"DetalleTexto":"\u201cUna de las grandes personalidades mundiales de la guitarra\u201d PUBLICO (Portugal) \u201cSonoridad a la vez limpia y profunda, con un sentido r\u00edtmico infalible\u201d. LE MONDE DE LA MUSIQUE (Francia). \u201cExcelencia musical al servicio de la creaci\u00f3n contempor\u00e1nea\u201d. MAIN ECHO (Alemania). \u201cInmensas cualidades musicales, hace respirar las seis cuerdas de su guitarra\u201d. LE SOIR (B\u00e9lgica). \u201cExuberantes texturas y gran intuici\u00f3n r\u00edtmica\u201d THE GAZETTE (Canad\u00e1). \u201cThe sound of genius\u201d LOYOLAN (Los Angeles, Estados Unidos). Obtuvo el primer premio en concursos internacionales de importancia mundial: \u201cInfanta Cristina\u201d de Madrid; \u201cAndr\u00e9s Segovia\u201d de Palma de Mallorca; \u201cReina Fabiola\u201d de Namur, B\u00e9lgica. En 1990 comenz\u00f3 a grabar para el label GHA RECORDS (Bruselas) una serie de discos de gran trascendencia dedicados al repertorio del siglo XX. Ha grabado para distintos sellos discogr\u00e1ficos con Charles Dutoit y la Orquesta Sinf\u00f3nica de Montreal (Canad\u00e1), Georges Octors y la Orquesta Sinf\u00f3nica Nacional de B\u00e9lgica, Leo Brouwer y la Orquesta Sinf\u00f3nica de C\u00f3rdoba (Espa\u00f1a), Pedro I. Calder\u00f3n y la Orquesta Sinf\u00f3nica Nacional de Argentina. Registr\u00f3 el Concierto para Guitarra de Eduardo Fal\u00fa con la Orquesta Sinf\u00f3nica de Salta para Sony Classical.\r\n\r\n","DireccionEvento":"YRIGOYEN, HIPOLITO 1665","FechaHoraFin":"20141103T193000","FechaHoraInicio":"20141103T180000","Frecuencia":null,"IdArea":2,"IdCalendario":2,"IdEvento":3606,"IdSubarea":2,"Latitud":-37.997693990765,"Longitud":-57.549625467134,"Lugar":"Teatro Municipal Col\u00f3n","NombreArea":"Cultura","NombreCalendario":"cultura mar del plata","NombreEvento":"Semana Rego - Concierto de Eduardo Isaac ","NombreSubAreaFormat":"-Ninguna-","NombreSubarea":"General Cultura","Precio":30,"Repetir":null,"RutaImagen":null,"RutaImagenMiniatura":"http:\/\/appsb.mardelplata.gob.ar\/Consultas\/nCalendario\/Archivos\/2\/2\/teatro colon 220_20141028105419.jpg","TodoDia":false,"ZonaHoraria":"America\/Argentina\/Buenos_Aires"},{"Altura":null,"Calle":null,"DescripcionCalendario":"","DescripcionEvento":"Mar del Plata en cortos","Destacado":false,"DetalleTexto":"\r\n","DireccionEvento":null,"FechaHoraFin":"20141103T213000","FechaHoraInicio":"20141103T200000","Frecuencia":null,"IdArea":2,"IdCalendario":2,"IdEvento":3607,"IdSubarea":2,"Latitud":null,"Longitud":null,"Lugar":"Teatro Municipal Col\u00f3n","NombreArea":"Cultura","NombreCalendario":"cultura mar del plata","NombreEvento":"Mar del Plata en cortos","NombreSubAreaFormat":"-Ninguna-","NombreSubarea":"General Cultura","Precio":20,"Repetir":null,"RutaImagen":null,"RutaImagenMiniatura":null,"TodoDia":false,"ZonaHoraria":"America\/Argentina\/Buenos_Aires"},{"Altura":3108,"Calle":"25 DE MAYO","DescripcionCalendario":"","DescripcionEvento":"CONFERENCIA DE LOGOTERAPIA","Destacado":false,"DetalleTexto":"\u201cCONFERENCIA DE LOGOTERAPIA\u201d | Logoterapia y Escuela de Vida para Padres con Hijos Fallecidos. | A cargo de la Prof. Ana Vuoso de Bretones, Directora del Centro de estudios de Logoterapia de Mar del Plata \u201cViktor E. Frankl\u201d. | Entrada General: $ 10\r\n","DireccionEvento":"25 DE MAYO 3108","FechaHoraFin":"20141104T203000","FechaHoraInicio":"20141104T193000","Frecuencia":"Semanalmente, s\u00e1bado hasta el 25\/11\/2014.","IdArea":2,"IdCalendario":2,"IdEvento":3597,"IdSubarea":2,"Latitud":-37.995174274778,"Longitud":-57.550590620009,"Lugar":"Centro Cultural Osvaldo Soriano","NombreArea":"Cultura","NombreCalendario":"cultura mar del plata","NombreEvento":"CONFERENCIA DE LOGOTERAPIA","NombreSubAreaFormat":"-Ninguna-","NombreSubarea":"General Cultura","Precio":10,"Repetir":"RRULE:FREQ=WEEKLY;BYDAY=SA;UNTIL=20141125T223000Z","RutaImagen":null,"RutaImagenMiniatura":"http:\/\/appsb.mardelplata.gob.ar\/Consultas\/nCalendario\/Archivos\/2\/2\/0 Soriano_20141027130019.jpg","TodoDia":false,"ZonaHoraria":"America\/Argentina\/Buenos_Aires"},{"Altura":1665,"Calle":"YRIGOYEN, HIPOLITO","DescripcionCalendario":"","DescripcionEvento":"9\u00ba Muestra Anual Centro Social Liban\u00e9s","Destacado":false,"DetalleTexto":"El centro Social liban\u00e9s de Mar del Plata realiza su 9\u00ba muestra anual de actividades: Bellydance\/ Danza \u00e1rabe (infantil y todos los niveles de formaci\u00f3n), percusi\u00f3n e idioma \u00e1rabe. Dicha Muestra est\u00e1 dirigida por la Profesora Munira Naim Laura Marcela S\u00e1nchez, y cuenta con la participaci\u00f3n de grupo Mabruk en Dabke y Mart\u00edn Paig\u00e9 en Derbake y tabel. Como es tradici\u00f3n el centro social liban\u00e9s realiza su muestra anual de los talleres anuales de danza, idioma y percusi\u00f3n \u00e1rabe, un recorrido de m\u00fasica, danzas y cultura para el deleite de todas aquellas personas amantes de la cultura oriental.\r\nEnt. gral: $40 \u2013 Est y jub.: $30.\r\n","DireccionEvento":"YRIGOYEN, HIPOLITO 1665","FechaHoraFin":"20141104T220000","FechaHoraInicio":"20141104T210000","Frecuencia":null,"IdArea":2,"IdCalendario":2,"IdEvento":3609,"IdSubarea":2,"Latitud":-37.997693990765,"Longitud":-57.549625467134,"Lugar":"Teatro Municipal Col\u00f3n","NombreArea":"Cultura","NombreCalendario":"cultura mar del plata","NombreEvento":"9\u00ba Muestra Anual Centro Social Liban\u00e9s","NombreSubAreaFormat":"-Ninguna-","NombreSubarea":"General Cultura","Precio":40,"Repetir":null,"RutaImagen":null,"RutaImagenMiniatura":"http:\/\/appsb.mardelplata.gob.ar\/Consultas\/nCalendario\/Archivos\/2\/2\/teatro colon 220_20141028130151.jpg","TodoDia":false,"ZonaHoraria":"America\/Argentina\/Buenos_Aires"},{"Altura":1665,"Calle":"YRIGOYEN, HIPOLITO","DescripcionCalendario":"","DescripcionEvento":"Semana Rego - Concierto de M\u00fasica Contempor\u00e1nea.","Destacado":false,"DetalleTexto":"Alumnos del Conservatorio Luis Gianneo. El compositor, a lo largo de su formaci\u00f3n acad\u00e9mica, necesita exponer su producci\u00f3n musical para ir construyendo su realidad consensuada, para crear puentes que lo conecten con su entorno. Se presentan cuatro estrenos de alumnos, de los cuales tres son para organismos musicales de gran despliegue instrumental. Estas obras son la resultante del trabajo deformaci\u00f3n durante los cuatro a\u00f1os del ciclo superior de la Carrera de Composici\u00f3n. El programa se complementa con obras de c\u00e1mara y de instrumento solo de compositores cuyo lenguaje comparte estructuras del pensamiento musical contempor\u00e1neo. Ent. libre y gratuita.\r\n","DireccionEvento":"YRIGOYEN, HIPOLITO 1665","FechaHoraFin":"20141105T220000","FechaHoraInicio":"20141105T210000","Frecuencia":null,"IdArea":2,"IdCalendario":2,"IdEvento":3610,"IdSubarea":2,"Latitud":-37.997693990765,"Longitud":-57.549625467134,"Lugar":"Teatro Municipal Col\u00f3n","NombreArea":"Cultura","NombreCalendario":"cultura mar del plata","NombreEvento":"Semana Rego - Concierto de M\u00fasica Contempor\u00e1nea","NombreSubAreaFormat":"-Ninguna-","NombreSubarea":"General Cultura","Precio":0,"Repetir":null,"RutaImagen":null,"RutaImagenMiniatura":"http:\/\/appsb.mardelplata.gob.ar\/Consultas\/nCalendario\/Archivos\/2\/2\/teatro colon 220_20141028130330.jpg","TodoDia":false,"ZonaHoraria":"America\/Argentina\/Buenos_Aires"},{"Altura":3108,"Calle":"25 DE MAYO","DescripcionCalendario":"","DescripcionEvento":"CICLO DE EXPRESIONES DE LA TERCERA EDAD","Destacado":false,"DetalleTexto":"Organiza: \u00c1rea Tercera Edad de la Subsecretar\u00eda de Desarrollo Humano MGP. Entrada General: Libre y Gratuita\r\n","DireccionEvento":"25 DE MAYO 3108","FechaHoraFin":"20141106T160000","FechaHoraInicio":"20141106T150000","Frecuencia":"Cada 15 d\u00edas hasta el 20\/11\/2014.","IdArea":2,"IdCalendario":2,"IdEvento":3615,"IdSubarea":2,"Latitud":-37.995174274778,"Longitud":-57.550590620009,"Lugar":"Centro Cultural Osvaldo Soriano","NombreArea":"Cultura","NombreCalendario":"cultura mar del plata","NombreEvento":"CICLO DE EXPRESIONES DE LA TERCERA EDAD","NombreSubAreaFormat":"-Ninguna-","NombreSubarea":"General Cultura","Precio":0,"Repetir":"RRULE:FREQ=DAILY;INTERVAL=15;UNTIL=20141120T180000Z","RutaImagen":null,"RutaImagenMiniatura":"http:\/\/appsb.mardelplata.gob.ar\/Consultas\/nCalendario\/Archivos\/2\/2\/ccos 220_20141030114652.jpg","TodoDia":false,"ZonaHoraria":"America\/Argentina\/Buenos_Aires"},{"Altura":3108,"Calle":"25 DE MAYO","DescripcionCalendario":"","DescripcionEvento":"PROGRAMA UNIVERSITARIO PARA ADULTOS MAYORES","Destacado":false,"DetalleTexto":"\u201cPROGRAMA UNIVERSITARIO PARA ADULTOS MAYORES (P.U.A.M.)\u201d | En este espacio se realizan charlas, conferencias, talleres, presentaciones art\u00edsticas, etc. | Organiza: Programa Universitario para Adultos Mayores. Facultad de Ciencias de la Salud y Servicio Social. Universidad Nacional de Mar del Plata. | Entrada General: Libre y Gratuita\r\n","DireccionEvento":"25 DE MAYO 3108","FechaHoraFin":"20141106T173000","FechaHoraInicio":"20141106T160000","Frecuencia":null,"IdArea":2,"IdCalendario":2,"IdEvento":3601,"IdSubarea":2,"Latitud":-37.995174274778,"Longitud":-57.550590620009,"Lugar":"Centro Cultural Osvaldo Soriano","NombreArea":"Cultura","NombreCalendario":"cultura mar del plata","NombreEvento":"PROGRAMA UNIVERSITARIO PARA ADULTOS MAYORES","NombreSubAreaFormat":"-Ninguna-","NombreSubarea":"General Cultura","Precio":0,"Repetir":null,"RutaImagen":null,"RutaImagenMiniatura":"http:\/\/appsb.mardelplata.gob.ar\/Consultas\/nCalendario\/Archivos\/2\/2\/0 Soriano_20141027130431.jpg","TodoDia":false,"ZonaHoraria":"America\/Argentina\/Buenos_Aires"},{"Altura":1851,"Calle":"MATHEU","DescripcionCalendario":"","DescripcionEvento":"VII Premio Nacional de Pintura Banco Central 2013","Destacado":true,"DetalleTexto":"Hasta al 8 de Diciembre. \u201cVII Premio Nacional de Pintura Banco Central 2013\u201d . El car\u00e1cter itinerante, distintivo federal de este premio, marca la clara orientaci\u00f3n de contribuir a la difusi\u00f3n del arte nacional, exhibiendo a artistas de diversas regiones como una manera de estimular el contacto con el p\u00fablico en m\u00faltiples espacios culturales del pa\u00eds; 30 obras finalistas que integran esta muestra, de ellas 9 en la categor\u00eda de menores de 35 a\u00f1os. El Jurado del Gran Premio Homenaje ha distinguido por su trayectoria al artista Gyula Kosice, cuya producci\u00f3n marca un hito fundamental en la historia del arte argentino desde los a\u00f1os 40 del siglo XX al momento actual.\r\n","DireccionEvento":"MATHEU 1851","FechaHoraFin":"20141106T213000","FechaHoraInicio":"20141106T190000","Frecuencia":"Semanalmente, jueves hasta el 08\/12\/2014.","IdArea":2,"IdCalendario":2,"IdEvento":3564,"IdSubarea":2,"Latitud":-38.019974068042,"Longitud":-57.552942165598,"Lugar":"Centro Cultural Victoria Ocampo","NombreArea":"Cultura","NombreCalendario":"cultura mar del plata","NombreEvento":"VII Premio Nacional de Pintura Banco Central 2013","NombreSubAreaFormat":"-Ninguna-","NombreSubarea":"General Cultura","Precio":12,"Repetir":"RRULE:FREQ=WEEKLY;BYDAY=TH;UNTIL=20141208T220000Z","RutaImagen":"http:\/\/appsb.mardelplata.gob.ar\/Consultas\/nCalendario\/Archivos\/2\/2\/Banco central_20141023102928.jpg","RutaImagenMiniatura":"http:\/\/appsb.mardelplata.gob.ar\/Consultas\/nCalendario\/Archivos\/2\/2\/villa victoria_20141023102928.jpg","TodoDia":false,"ZonaHoraria":"America\/Argentina\/Buenos_Aires"},{"Altura":1187,"Calle":"COLON, CRISTOBAL","DescripcionCalendario":"","DescripcionEvento":"EL ARTE DEL FILETEADO","Destacado":true,"DetalleTexto":"Del 07 al 24 de Noviembre | El fileteado es una expresi\u00f3n art\u00edstica y popular que nace en Buenos Aires a principios del siglo XX, creado por inmigrantes italianos y franceses. Las f\u00e1bricas de carros lo vieron nacer y evoluciona hasta convertirse en un estilo pict\u00f3rico definido que es parte de nuestra identidad y nuestra cultura nacional. | En la presente muestra, el Museo recibe al fileteado de la mano de artistas fileteadores que viven y trabajan en la ciudad de Mar del Plata. El arte del fileteado trasciende las fronteras de nuestro pa\u00eds y es propuesto ante la UNESCO para ser declarado Patrimonio de la Humanidad. (Planta Baja).","DireccionEvento":"COLON, CRISTOBAL 1187","FechaHoraFin":"20141107T190000","FechaHoraInicio":"20141107T130000","Frecuencia":"Semanalmente, viernes hasta el 24\/11\/2014.","IdArea":2,"IdCalendario":2,"IdEvento":3592,"IdSubarea":2,"Latitud":-38.010618977874,"Longitud":-57.536069458904,"Lugar":"Museo Municipal de Arte Juan Carlos Castagnino","NombreArea":"Cultura","NombreCalendario":"cultura mar del plata","NombreEvento":"Muestra EL ARTE DEL FILETEADO","NombreSubAreaFormat":"-Ninguna-","NombreSubarea":"General Cultura","Precio":12,"Repetir":"RRULE:FREQ=WEEKLY;BYDAY=FR;UNTIL=20141124T160000Z","RutaImagen":"http:\/\/appsb.mardelplata.gob.ar\/Consultas\/nCalendario\/Archivos\/2\/2\/el arte del fileteado_20141027120827.jpg","RutaImagenMiniatura":"http:\/\/appsb.mardelplata.gob.ar\/Consultas\/nCalendario\/Archivos\/2\/2\/0 Castagnino_20141027120827.jpg","TodoDia":false,"ZonaHoraria":"America\/Argentina\/Buenos_Aires"},{"Altura":1851,"Calle":"MATHEU","DescripcionCalendario":"","DescripcionEvento":"\u201cEl Arte, el t\u00e9 y Victoria Ocampo\u201d; servicio de t\u00
|
请发表评论