Skip to content

Instantly share code, notes, and snippets.

View kusflo's full-sized avatar
🎯
Focusing future

Marcos kusflo

🎯
Focusing future
View GitHub Profile
@prestarocket
prestarocket / .gitignore
Last active July 19, 2023 16:04
Gitignore PrestaShop 1.7
# Cache, temp and personal files
/.htaccess
*.log
npm-debug.log.*
.sass-cache/
/cache/*
download/*
/img/*
/log/*
@gchacaltana
gchacaltana / checkTimeZone.php
Last active April 6, 2017 10:28
checking timezone
<?php
/**
* return true if timezone exist.
* @author Gonzalo Chacaltana Buleje <gchacaltanab@outlook.com>
* @param string $timezone, timezone. example: America/Lima
*/
public static function checkTimeZone($timezone)
{
if (!empty($timezone)) {
$listTimeZone = DateTimeZone::listIdentifiers(DateTimeZone::ALL);
@r-sal
r-sal / PHPExcel_Basics.md
Last active May 8, 2024 06:29
PHPExcel Notes and code snippets

Basics

Creating a new PHPExcel Object.

    $this->PHPExcel = new PHPExcel();

Working with sheets

Creating a new sheet: