Home >php教程 >php手册 >Pear的PHP_Compat包

Pear的PHP_Compat包

WBOY
WBOYOriginal
2016-06-13 10:35:16830browse

Pear的PHP_Compat是个比较有趣的包,它提供了一些php4下也能使用的php5专有函数,比如file_put_contents,array_combine,str_split..........这样即使是在php4的主机上,也能提前享受一点php5函数的便利.

用法
PLAIN TEXT
PHP:
require_oncePHP/Compat.php;
 
// load file_put_contents
PHP_Compat::loadFunction(file_put_contents);
 
// load str_split, array_chunk and file_get_contents
PHP_Compat::loadFunction(array(str_split,array_chunk,file_get_contents));
?>
上面的例子说明,可以一次载入n个php5特有函数

Package Information: PHP_Compat
http://pear.php.net/package/PHP_Compat

作者:volcano发表于11月 23, 2006 at 7:42 am

版权信息:可以任意转载, 转载时请务必以超链接形式标明文章原始出处和作者信息及此声明

永久链接 - http://www.ooso.net/index.php/archives/267

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn