I am writing a kind of test system in php that would test my database records. I have separated php files for every test case. One (master) file is given the test number and the input parameters for that test in the form of URL string. That file determines the test number and calls the appropriate test case based on test number. Now I have a bunch of URL strings to be passed, I want those to be passsed to that (master) file and every test case starts working independently after receiving its parameters.
|
PHP is a single threaded entity, no multithreading currently exists for it. However, there are a few things you can do to achieve similar (but not identical) results for use cases I have come across when people normally ask me about multithreading. Again, there is no multithreading in PHP, but some of the below may help you further in creating something with characteristics that may match your requirement.
|
|||
|
|
|
PHP is not multithreaded, it's singlethreaded. You cannot start new threads within PHP. Your best bet would be a You could also have a look at John's post at http://phplens.com/phpeverywhere/?q=node/view/254. |
|||
|
|
|
What you can do is use cURL to send the requests back to the server. The request will be handled and the results will be returned. An example would be:
Although this is not considered multithreading, it can be used to achieve your goal. |
|||||
|
file_get_contents( $url );– Berry Langerak May 2 '12 at 12:11