Skip to content

Instantly share code, notes, and snippets.

@Hirurg103
Last active August 29, 2015 13:56
Show Gist options
  • Save Hirurg103/9091613 to your computer and use it in GitHub Desktop.
Save Hirurg103/9091613 to your computer and use it in GitHub Desktop.
<?php
function to_str($prefix) {
$parent_str = $prefix . $this->text . PHP_EOL
if(empty($this->children)) {
return $parent_str;
} else {
return $parent_str . array_map(function($node) use ($prefix) {
return $node->to_str($prefix . ' ');
}, this->children).join();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment