설치

» PECL 확장은 PHP 배포판에서 제공하지 않습니다.

PECL 확장 설치에 관한 정보는 매뉴얼의 PECL 확장 설치에 있습니다. 새 릴리즈, 내려받기, 소스파일, 개발자 정보, CHANGELOG 등의 추가 정보는 여기에 있습니다: » http://pecl.php.net/package/runkit.

PECL 확장에 대한 DLL은 현재 사용할 수 없습니다. 윈도우에서 빌드하기 섹션을 참고하십시오.

add a note add a note

User Contributed Notes 4 notes

up
9
Dmitry Zenovich
11 years ago
The project is now hosted on http://github.com/zenovich/runkit

To install a release version, simply type

sudo pecl install https://github.com/downloads/zenovich/runkit/runkit-1.0.3.tgz

(to install version 1.0.3).
See the http://github.com/zenovich/runkit/downloads for the full list of release files.

To get most fresh and hot features you may also build the extension from master-branch source code. Clone it with
git clone git://github.com/zenovich/runkit.git
and follow the instructions in the README file.
up
6
dzenovich at php dot net
8 years ago
To install the latest release via PECL you should access Runkit's PEAR channel:

pear channel-discover zenovich.github.io/pear

Then to install Runkit just type:

pecl install zenovich/runkit
up
7
Ferrie Herrie
11 years ago
If you're missing installation instructions in the readme and normal installations don't work, this is what worked for me on Centos 5.9 with php 5.3.3

cd /tmp
git clone https://github.com/zenovich/runkit.git
cd runkit
pecl install package.xml

// Add to php.ini:
extension=runkit.so

// Restart your webserver
service httpd restart
up
1
frxstrem
13 years ago
If the normal PECL installation doesn't work for you, you may want to install from SVN instead:

svn checkout http://svn.php.net/repository/pecl/runkit/trunk/
cd trunk
pecl install package.xml

After pecl has finished installing runkit, add the following line to your php.ini file(s):

extension=runkit.so

Then restart your webserver, and runkit should now be installed and working with your PHP installation.
To Top