This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
yum install -y gcc libpng libjpeg libpng-devel libjpeg-devel ghostscript libtiff libtiff-devel freetype freetype-devel | |
wget ftp://ftp.graphicsmagick.org/pub/GraphicsMagick/1.3/GraphicsMagick-1.3.9.tar.gz | |
tar zxvf GraphicsMagick-1.3.9.tar.gz | |
cd GraphicsMagick-1.3.9 | |
./configure --enable-shared | |
make |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function montaHorario($horaMin=7, $minMin=0, $horaMax=22, $minMax=45, $default=""){ | |
$montaHorario = ''; | |
for($hora=$horaMin; $hora<=$horaMax; $hora++){ | |
$horaStr = str_pad($hora, 2, "0", STR_PAD_LEFT); | |
$startMin = 0; | |
if($hora==$horaMin){ | |
$startMin = $minMin; | |
} | |
$endMin = 45; |