- is_callable: documentation ( source)
<?php
$config = [];
$foo = is_callable($config['callable']);
$config['callable'] = 'nonexistent_callable';
$bar = is_callable($config['callable']);
$config['callable'] = 'strtolower';
$baz = is_callable($config['callable']);