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 |
Grouping where clauses with zend_db_table_abstract ?
What is the function of action helper in zend?
Explain what is being presented by the decorators?
Tell me what are the basic operations performed by the decorator?
What are the ways in which the file can be detected as being uploaded or not?
What are the advantages of zend framework 2?
What is zend_filter?
Explain what is the function of action helper in zend?
How to disable zend layout from controller for ajax call only?
How to write a program to retrieve the view object within plugin?
How to print exact sql query in zend framework ?
What new in zend framework 2.0?