Skip to content

Instantly share code, notes, and snippets.

@PechenkiUA
Created December 28, 2020 14:44
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 PechenkiUA/1d350d106849a0a4fa4605c61a4bceac to your computer and use it in GitHub Desktop.
Save PechenkiUA/1d350d106849a0a4fa4605c61a4bceac to your computer and use it in GitHub Desktop.
Parse string new line to Array
<?php
$str = '/ru/rensoria62
/ru/rubi102
/ru/milton86
/ru/sorrento96
/ru/samanta164
/ru/citywood97
/ru/casablanca249
/ru/finwood236
/ru/moris163
/ru/otis177';
$skuList = preg_split("/\\r\\n|\\r|\\n/", $str);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment