PHP内置函数

替换字符串

str_replace


判断函数是否存在

function_exists
function func() {
}
if (function_exists('func')){
    echo 'exists';
}

判断类是否存在

class_exists
class MyClass{
}
// 使用前检查类是否存在
if (class_exists('MyClass')) {
    $myclass = new MyClass();
}

文件是否存在

file_exists
$filename = 'test.txt';
if (!file_exists($filename)) {
    echo $filename . ' not exists.';
}

你可能感兴趣的:(PHP内置函数)