2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

はじめてmampでpeclを入れる手順

Posted at

##peclをインストールするための手順

peclとはは下記を参照するとわかりやすいです。
http://dqn.sakusakutto.jp/2015/07/php_extension_pecl_phpize.html

2つに分断されたPHPの世界
PHPの世界では、ライブラリ配布方式が2つの世界に分断されてしまっています。
ライブラリの種類 配布サイト インストーラ
PHP言語で書かれたライブラリ Packagist (https://packagist.org/) Composer
C言語で書かれたライブラリ PECL (https://pecl.php.net/) pecl

peclのインストール先を指定する

peclをmampにインストールする際には、使用するphpのバージョンを指定する必要があります。

mampを起動し、設定 > 標準バージョンを選択
MAMP.png

peclをインストールする際には、下記を参照
http://www.webcyou.com/?p=2216

/Applications/MAMP/bin/php/phpのバージョン/bin/pear install -a http://pear.php.net/get/インストールしたいパッケージ

サンプル

 /Applications/MAMP/bin/php/php5.6.10/bin/pear install -a http://pear.php.net/get/Mail-1.2.0

インストールされているかの確認方法

/Applications/MAMP/bin/php/phpのバージョン/bin/pear list
fuelphp_—_-bash_—_80×24.png
2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?