PEAR 是“PHP Extension and Application Repository”的缩写,即PHP扩展和应用仓库。
PECL 是“PHP Extension Community Library”的缩写,即PHP 扩展库。PECL 可以看作PEAR 的一个组成部分。
str_spit 将字符串分隔成数组
<?php
$str = "abcded g";
print_r(str_split($str));
?>
输出:Array ( [0] => a [1] => b [2] => c [3] => d [4] => e [5] => d [6] => [7] => g ) //注意会自动去除空格
error_get_last()返回最后发生的错误:
<?php
echo $test;
print_r(error_get_last()
);
?>
输出:Array
(
[type] => 8
[message] => Undefined variable: test
[file] => C:webfolder est.php
[line] => 2
)
copy() 函数拷贝文件。
<?php
echo copy("source.txt","target.txt")
;
?>