I have a php function and i want it to work asynchronously.
function my_function1(){
//some code
my_async_func();
}
function my_async_func(){
// doing background task
}
any help is most welcome
i have visited PHP threading call to a php function asynchronously
but i don't want to use php threading