How to update a new version of the Zend platform in Zend Studio

I am new to Zend Studio and Zend framework. I am trying to create a Zend framework project in Zend Studio. But only one version of the frame can be selected, which, in my opinion, is standard. If I want to add a new version of the framework and create a new Zend framework project with a new one, how can I do this?

thank

PS The version of Zend Studio that I used is 7.2.1, and the Zend Framework that I want to add is version 1.11.3

+3
source share
3 answers

What m0sc said.

Another option is to ignore the use of the zend studio library; and just include it every time in index.php:

set_include_path(implode(PATH_SEPARATOR, array(
    realpath(dirname(__FILE__) . '/../library'),
    get_include_path(),
)));

, , .

0

zend studio jar. ZF - . , , ZF, Zend Studio, , Zend Studio.

- Zend

+1

, . .jar. . .

[ ]/. /.plugins/org.zend.php.framework.resource//ZendFramework-1/

.

> > PHP

Zend Framework. .

0

Source: https://habr.com/ru/post/1790256/


All Articles