So far so good...
I used :
Code: 
$entry_arrayz[ 'entry' ]  .= $Storage = RecurseFolderLister('fav'); asort($Storage); var_dump($Storage);
where $entry_arrayz[ 'entry' ] is the place where sorted $storage will show,but i get :

Code: 
array(1) { ["entry100620-034822.txt"]=> int(1) } 

Array

How to print that thing ?
Also in the following case i've put entry100620-034822.txt in 2 different folders (which means entry100620-034822.txt is repeating 2 times) and a.txt (just 1)

Code: 
array(2) { ["a.txt"]=> int(1) ["entry100620-034822.txt"]=> int(1) }

Array
So another question - Is there "* Sort 10 most repeating identicals,show(echo) their contents and show(echo) times repeated (in brackets such as this one )" in your code ?

I am really bad in PHP so sorry that i am asking such a stupid questions.