Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Last active January 12, 2021 21:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/5da8eb3d855f11387cabd055fb78c2e0 to your computer and use it in GitHub Desktop.
Save parzibyte/5da8eb3d855f11387cabd055fb78c2e0 to your computer and use it in GitHub Desktop.
<?php
function iniciarSesionSiNoEstaIniciada()
{
if (session_status() !== PHP_SESSION_ACTIVE) {
session_start();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment