Dear owncloud team:<br>     Sorry for my poor english!<br>     I saw the source code and most PHP Files do not use 'include' and 'require' to load the class PHP File,i got confused,Maybe i am a new PHPer...<br>     If i create my Class file in /lib , how i can autoload it?<br>     I have read the document about how to develop an app.But i am interested about the core function..<br>     By the way,in /settings/users.php£¬there is a code like:<br>     $accessibleusers = OC_User::getDisplayNames('', 30);<br>     I guess OC_User::getDisplayNames is used to get the users array,it work ok in users page.<br>     But i create a test.php,the code is like:<br>    <?php<br>        include'lib/test.php';<br>        $test=new Test();<br>        $user=$test->getUsers();<br>        print_r($user);<br>        //exit;<br>    ?><br>    and open the file in browser ,i got a empty array.<br>    What's Wrong?...<br>    Thank you!<br>