个人工具

“UbuntuHelp:PhpPear”的版本间的差异

来自Ubuntu中文

跳转至: 导航, 搜索
 
(未显示同一用户的4个中间版本)
第5行: 第5行:
 
== Installation ==
 
== Installation ==
 
Install the '''php-pear''' package using your favorite Ubuntu package manager.  
 
Install the '''php-pear''' package using your favorite Ubuntu package manager.  
See InstallingSoftware for different ways to install the php-pear package.
+
See [[UbuntuHelp:InstallingSoftware|InstallingSoftware]] for different ways to install the php-pear package.
 
== Using PEAR ==
 
== Using PEAR ==
 
This section discusses some of the common uses of PEAR. For more detailed instructions on using PEAR see the [http://pear.php.net/manual PEAR Manual]
 
This section discusses some of the common uses of PEAR. For more detailed instructions on using PEAR see the [http://pear.php.net/manual PEAR Manual]
第27行: 第27行:
 
<pre><nowiki>
 
<pre><nowiki>
 
pear uninstall <package_name>
 
pear uninstall <package_name>
 +
</nowiki></pre>
 +
* Upgrade PEAR installer (needed for installing certain packages)
 +
<pre><nowiki>
 +
pear upgrade PEAR
 
</nowiki></pre>
 
</nowiki></pre>
 
== Example ==
 
== Example ==
In this example the we'll install the [http://pear.php.net/package/System_Folders System_Folders] package.  System_Folders provides methods to get the locations of various system folders like home directory, desktop folder and "My documents".  
+
In this example, we'll install the [http://pear.php.net/package/System_Folders System_Folders] package.  System_Folders provides methods to get the locations of various system folders like home directory, desktop folder and "My documents".  
 
* Install System_Folders
 
* Install System_Folders
 
<pre><nowiki>
 
<pre><nowiki>
 
command:
 
command:
 
sudo pear install System_Folders
 
sudo pear install System_Folders
 +
 
output:
 
output:
Did not download optional dependencies: pear/XML_Parser, pear/XML_Util, use --alldeps to download automatically
+
  Did not download optional dependencies: pear/XML_Parser, pear/XML_Util, use --alldeps to download automatically
pear/Config can optionally use package "pear/XML_Parser"
+
  pear/Config can optionally use package "pear/XML_Parser"
pear/Config can optionally use package "pear/XML_Util"
+
  pear/Config can optionally use package "pear/XML_Util"
downloading System_Folders-1.0.0.tgz ...
+
  downloading System_Folders-1.0.0.tgz ...
Starting to download System_Folders-1.0.0.tgz (8,364 bytes)
+
  Starting to download System_Folders-1.0.0.tgz (8,364 bytes)
.....done: 8,364 bytes
+
  .....done: 8,364 bytes
downloading Config-1.10.11.tgz ...
+
  downloading Config-1.10.11.tgz ...
Starting to download Config-1.10.11.tgz (27,718 bytes)
+
  Starting to download Config-1.10.11.tgz (27,718 bytes)
...done: 27,718 bytes
+
  ...done: 27,718 bytes
install ok: channel://pear.php.net/Config-1.10.11
+
  install ok: channel://pear.php.net/Config-1.10.11
install ok: channel://pear.php.net/System_Folders-1.0.0
+
  install ok: channel://pear.php.net/System_Folders-1.0.0
 
</nowiki></pre>
 
</nowiki></pre>
 
Notice PEAR mentions some optional packages to install.
 
Notice PEAR mentions some optional packages to install.
第52行: 第57行:
 
command:
 
command:
 
pear list  
 
pear list  
 +
 
output:
 
output:
 
Package            Version  State
 
Package            Version  State
第61行: 第67行:
 
command:
 
command:
 
pear list-files System_Folders
 
pear list-files System_Folders
 +
 
output:
 
output:
 
Installed Files For System_Folders
 
Installed Files For System_Folders
第72行: 第79行:
 
'''Note:''' The path names may vary depending on your system.
 
'''Note:''' The path names may vary depending on your system.
 
* Using System_Folders in a PHP program.
 
* Using System_Folders in a PHP program.
** We'll create a simple PHP script to print the location of your Home folder.
+
* We'll create a simple PHP script to print the location of your Home folder.
** Open your favorite text editor and add the following:
+
* Open your favorite text editor and add the following:
 
<pre><nowiki>
 
<pre><nowiki>
 
<?php
 
<?php
 +
 
require_once 'System/Folders.php';
 
require_once 'System/Folders.php';
 
$sf = new System_Folders();
 
$sf = new System_Folders();
 
$home = $sf->getHome();
 
$home = $sf->getHome();
 
echo "$home\n";
 
echo "$home\n";
 +
 
?>
 
?>
 
</nowiki></pre>
 
</nowiki></pre>
第90行: 第99行:
 
'''Note:''' to execute the above command you'll need to have '''php-cli''' installed on your system.
 
'''Note:''' to execute the above command you'll need to have '''php-cli''' installed on your system.
 
* If you have Apache or another web server configured to use PHP you could also place the file somewhere in your DocumentRoot and point your browser to it.
 
* If you have Apache or another web server configured to use PHP you could also place the file somewhere in your DocumentRoot and point your browser to it.
** For example: <code><nowiki>http://localhost/test/system_folders_test.php</nowiki></code>
+
* For example: <code><nowiki>http://localhost/test/system_folders_test.php</nowiki></code>
 
* If after all that you've decided that System_Folders isn't all that useful you can uninstall it by:
 
* If after all that you've decided that System_Folders isn't all that useful you can uninstall it by:
 
<pre><nowiki>
 
<pre><nowiki>
 
command:
 
command:
 
sudo pear uninstall System_Folders
 
sudo pear uninstall System_Folders
 +
 
output:
 
output:
 
uninstall ok: channel://pear.php.net/System_Folders-1.0.0
 
uninstall ok: channel://pear.php.net/System_Folders-1.0.0
第122行: 第132行:
 
'''Note:''' This guide has been tested on Ubuntu 6.06 (Dapper), Ubuntu 7.10 (Gutsy).
 
'''Note:''' This guide has been tested on Ubuntu 6.06 (Dapper), Ubuntu 7.10 (Gutsy).
 
----
 
----
[[category:CategoryDocumentation]]
 
 
[[category:CategorySoftware]]
 
[[category:CategorySoftware]]
  
 
[[category:UbuntuHelp]]
 
[[category:UbuntuHelp]]

2008年10月19日 (日) 16:50的最新版本

PHP PEAR Introduction

PHP PEAR is a PHP Extension and Application Repository. PEAR is somewhat similar to Perl's CPAN and Ruby's RubyGems. PEAR functions like a Package Manager for PHP code and a whole lot more.

Installation

Install the php-pear package using your favorite Ubuntu package manager. See InstallingSoftware for different ways to install the php-pear package.

Using PEAR

This section discusses some of the common uses of PEAR. For more detailed instructions on using PEAR see the PEAR Manual

  • Get a list of software available using PEAR
pear remote-list
  • Install a package
pear install <package_name>
  • List packages installed
pear list
  • List files belonging to an installed package
pear list-files <package_name>
  • Uninstall a PEAR package
pear uninstall <package_name>
  • Upgrade PEAR installer (needed for installing certain packages)
pear upgrade PEAR

Example

In this example, we'll install the System_Folders package. System_Folders provides methods to get the locations of various system folders like home directory, desktop folder and "My documents".

  • Install System_Folders
command:
sudo pear install System_Folders

output:
  Did not download optional dependencies: pear/XML_Parser, pear/XML_Util, use --alldeps to download automatically
  pear/Config can optionally use package "pear/XML_Parser"
  pear/Config can optionally use package "pear/XML_Util"
  downloading System_Folders-1.0.0.tgz ...
  Starting to download System_Folders-1.0.0.tgz (8,364 bytes)
  .....done: 8,364 bytes
  downloading Config-1.10.11.tgz ...
  Starting to download Config-1.10.11.tgz (27,718 bytes)
  ...done: 27,718 bytes
  install ok: channel://pear.php.net/Config-1.10.11
  install ok: channel://pear.php.net/System_Folders-1.0.0

Notice PEAR mentions some optional packages to install.

  • Double check that System_Folders is installed
command:
pear list 

output:
Package            Version   State
System_Folders     1.0.0     stable

Note: You'll probably have other PEAR packages in the list. Some are installed when you install PHP.

  • List the files that System_Folders installed
command:
pear list-files System_Folders

output:
Installed Files For System_Folders
==================================
Type Install Path
php  /usr/share/php/System/Folders/Cached.php
doc  /usr/share/php/docs/System_Folders/examples/cached.php
doc  /usr/share/php/docs/System_Folders/examples/example.php
php  /usr/share/php/System/Folders.php

Note: The path names may vary depending on your system.

  • Using System_Folders in a PHP program.
  • We'll create a simple PHP script to print the location of your Home folder.
  • Open your favorite text editor and add the following:
<?php

require_once 'System/Folders.php';
$sf = new System_Folders();
$home = $sf->getHome();
echo "$home\n";

?>
  • Save the file as system_folders_test.php (or simply test.php if you're into the whole brevity thing).
  • Next execute the script:
php system_folders_test.php
  • If all went well you should see the path to your Home directory printed to the console.

Note: to execute the above command you'll need to have php-cli installed on your system.

  • If you have Apache or another web server configured to use PHP you could also place the file somewhere in your DocumentRoot and point your browser to it.
  • For example: http://localhost/test/system_folders_test.php
  • If after all that you've decided that System_Folders isn't all that useful you can uninstall it by:
command:
sudo pear uninstall System_Folders

output:
uninstall ok: channel://pear.php.net/System_Folders-1.0.0

NOTES

1) Some PHP PEAR modules are packaged for installation using Ubuntu package managers, but if the package you're looking for is missing from Ubuntu and you will have to manually install them by using PEAR. See above for instructions. For example:

pear install Image_color
pear install Image_Text
pear install channel://pear.php.net/Image_Text-0.5.2beta2

2) If you are trying to use Image_graph you may get

Warning: imagettfbbox() [function.imagettfbbox]:
Could not find/open font in /mnt/sites/asmtennis.net/web/PEAR/Image/Canvas/GD.php

unless you have installed TrueType fonts and created a symbolic link to them

$ sudo -i
# cd /usr/share/php/Image/Canvas
# ln -s /usr/share/fonts/truetype/msttcorefonts/ Fonts
$

Note: This guide has been tested on Ubuntu 6.06 (Dapper), Ubuntu 7.10 (Gutsy).