Trimming data contained in an array
function file_trim(&$value, $key) { $value = trim($value); } $file = file('name.txt'); @array_walk($file, 'file_trim');
DZone Snippets > mattisbusy > trim
12374 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Matt Kaufman http://www.mattisbusy.com
function file_trim(&$value, $key) { $value = trim($value); } $file = file('name.txt'); @array_walk($file, 'file_trim');