Hello @kartik,
You can't call a PHP function directly from an AJAX call, but you can do this:
<? php 
    function test($data){
        return $data+1;
    }
    if (isset($_POST['callFunc1'])) {
        echo test($_POST['callFunc1']);
    }
?>
<script>
    $.ajax({
        url: 'myFunctions.php',
        type: 'post',
        data: { "callFunc1": "1"},
        success: function(response) { console.log(response); }
    });
</script>
Thank You!!