I have two PHP web applications. All of the apps are located on the same computer. Each application will run independently.
Now, can I do a direct API call from one PHP app to another? I don't want to go through either the webservice, or the usual HTTP call that involves HTML response. I want to call app A from app B, using direct method call, as if those two apps are the same application.
How to do this?