I have a PHP script which includes one or two other libraries it depends on using the \'include\' statement. To make it more easily portable, I would like to someho
Manually, you just remove all references of include/require, and "concatenate" the files together.
you should also strip the open and end tags ('") before concatenation, and add them in the final file.
For one or two small libraries, it should - hopefully - "just work"...