File: README.Debian

package info (click to toggle)
zendframework 1.10.6-1squeeze6
  • links: PTS
  • area: main
  • in suites: squeeze-lts
  • size: 29,624 kB
  • ctags: 46,247
  • sloc: xml: 233,973; php: 195,700; sql: 90; sh: 19; makefile: 10
file content (18 lines) | stat: -rw-r--r-- 561 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
ZendFramework for Debian
------------------------

To use ZendFramework in your project add Zend to your include path.
You have two possibilities to do that.

1. Enable it global in php.ini
   - add the following path to include_path in your php.ini:
     /usr/share/php

2. Add to include path bei ini_set
   - use the following code in your script to add the framework to the include
     path:

     set_include_path(get_include_path() . PATH_SEPARATOR .
     '/usr/share/php');

 -- Frank Habermann <lordlamer@lordlamer.de>  Sun, 23 Aug 2008 20:48:00 +0200