Skip to content

Instantly share code, notes, and snippets.

@dbolser
Created October 25, 2012 20:23
Show Gist options
  • Save dbolser/3955167 to your computer and use it in GitHub Desktop.
Save dbolser/3955167 to your computer and use it in GitHub Desktop.
static function isNodeNotEmpty( $node ) {
return trim( $node[0] ) != '';
}
static function filterEmptyNodes( $nodes ) {
if ( !is_array( $nodes ) ) return $nodes;
return array_filter( $nodes, "self::isNodeNotEmpty" );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment