Skip to content

Instantly share code, notes, and snippets.

View juliancantillo's full-sized avatar
:octocat:

Julian Cantillo juliancantillo

:octocat:
View GitHub Profile
@juliancantillo
juliancantillo / wp_laravel_site
Created May 29, 2015 15:46
nginix with laravel and wordpress
server {
listen 80;
#listen [::]:80 ipv6only=on;
root /srv/staging/inmovis_laravel/public;
index index.php index.html index.htm;
error_log /srv/staging/logs/error.log warn;
# Make site accessible from http://localhost/
@juliancantillo
juliancantillo / is_array
Created February 19, 2015 14:37
Check if a variable is an array in php
// Check if $variable is an Array
if (is_array($variable)) {
# code...
}