Skip to content

Instantly share code, notes, and snippets.

@dimkalinux
Created January 11, 2013 09:34
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 dimkalinux/4509308 to your computer and use it in GitHub Desktop.
Save dimkalinux/4509308 to your computer and use it in GitHub Desktop.
<?php
$categoriesNames = array();
foreach ($categories as $categoryName) {
$categoriesNames[] = trim((string)$categoryName);
}
// так же лучше?
$categoriesNames = array_map("trim", $categories);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment