Skip to content

Instantly share code, notes, and snippets.

@pedropuppim
Created June 3, 2022 12:55
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 pedropuppim/61e4489378e154922b39fc60f165837c to your computer and use it in GitHub Desktop.
Save pedropuppim/61e4489378e154922b39fc60f165837c to your computer and use it in GitHub Desktop.
Converte em array linha de e-mails com 2 tipos de separadores , e ;
<?php
//Converte em array linha de e-mails com 2 tipos de separadores , e ;
$email="fernanda@ajudes.org.br;josi@ajudes.org.br;";
$emails = preg_split('/[\s,; ]+/', $email, -1, PREG_SPLIT_NO_EMPTY);
print_r($emails);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment