Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


How do you define the library path in zend ?



How do you define the library path in zend ?..

Answer / Desh Deepak Diwakar

To define the library path in Zend Framework, you can use the `setAutoloaderNamespaces()` method of the application factory. Here's an example:

```php
$application = new ZendMvcApplication(array(
'autoloader' => array(
'ZendLoaderClassMapAutoloader' => array(
__DIR__ . '/autoload_classmap.php',
),
'ZendLoaderStandardAutoloader' => array(
'namespaces' => array(
__NAMESPACE__ => __DIR__ . '/src',
),
),
),
));
```

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Zend Interview Questions

Grouping where clauses with zend_db_table_abstract ?

1 Answers  


What is the function of action helper in zend?

1 Answers  


Explain what is being presented by the decorators?

1 Answers  


Tell me what are the basic operations performed by the decorator?

1 Answers  


What are the ways in which the file can be detected as being uploaded or not?

1 Answers  


What are the advantages of zend framework 2?

1 Answers  


What is zend_filter?

1 Answers  


Explain what is the function of action helper in zend?

1 Answers  


How to disable zend layout from controller for ajax call only?

1 Answers  


How to write a program to retrieve the view object within plugin?

1 Answers  


How to print exact sql query in zend framework ?

1 Answers  


What new in zend framework 2.0?

1 Answers  


Categories