Heim  >  Artikel  >  Backend-Entwicklung  >  Pear的PHP_Compat包_PHP教程

Pear的PHP_Compat包_PHP教程

WBOY
WBOYOriginal
2016-07-13 17:36:39900Durchsuche

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

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/486641.htmlTechArticlePear的PHP_Compat是个比较有趣的包,它提供了一些php4下也能使用的php5专有函数,比如file_put_contents,array_combine,str_split..........这样即使是在php4的主...
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn