Skip to content

Instantly share code, notes, and snippets.

@pedropuppim
Created June 3, 2022 12:55
Show Gist options
  • Select an option

  • Save pedropuppim/61e4489378e154922b39fc60f165837c to your computer and use it in GitHub Desktop.

Select an option

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="[email protected];[email protected];";
$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