“Se a função não existe php” Respostas de código

Se a função não existe php

if(!function_exists('my_function')){
    function myfunction(){} 
}
Yousef Qaoud

função existe

function_exists('function_name'); //Will return true if function exists
RWL_Dittrich

Se a função não existe php

if(function_exists('my_function')){
    // my_function is defined
}
Yousef Qaoud

Respostas semelhantes a “Se a função não existe php”

Perguntas semelhantes a “Se a função não existe php”

Mais respostas relacionadas para “Se a função não existe php” em PHP

Procure respostas de código populares por idioma

Procurar outros idiomas de código