PHP function_exists中的多个函数

时间:2014-03-19 16:43:15

标签: php

有没有办法在function_exists中有多个函数?

我试过了:

if (function_exists('function_one' && 'function_two')) {

它不会返回错误,但在两个函数都存在时返回false。

1 个答案:

答案 0 :(得分:3)

基本上你在脚本中做的是检查函数function_onefunction_two是否存在。如果你想解决这个问题,你可以这样做:

if(function_exists('function_one') && function_exists('function_two')) {