Skip to content

Instantly share code, notes, and snippets.

View JPKCom's full-sized avatar
🏠
Working from home

Jean Pierre Kolb JPKCom

🏠
Working from home
View GitHub Profile
@JPKCom
JPKCom / getenv.php
Created November 14, 2023 14:17
Simple .env connector
<?php
if ( !function_exists( 'jpkcom_getenv' ) ) {
if ( file_exists( dirname(__FILE__) . '/.env' ) ) {
$lines = file( dirname(__FILE__) . '/.env' );
foreach ( $lines as $line ) {