Hello, maybe this problem was discussed already, but I didn't find any solution.
I use PHPEd with third party server, where there is some additional include path in php.ini (e.g. for PEAR library).
So, question, how to make PEAR work with code completion, for example I use this construction:
require('DB.php'); //Here we require DB class from PEAR library, i.e. DB.php file not included directly in project, but it founded through path in php.ini
//nearly code completion not work, i.e. if I will write "DB", PHPEd will not find any DB class and its metods.
$db = DB::connect('mysql://'.DB_USER.":".DB_PASS."@".DB_SERVER."/".DB_NAME);
if (PEAR::isError($db))
die($db->getMessage());
|
Thanks.