with php i have to split a single pdf file with multiple pages inside it to a lot of PDF file with one page per file. I use pdftk and works fine, but every pdf created for e
You may use pdftk and try
pdftk source.pdf cat 1-100 output try1.pdf pdftk source.pdf cat 101-end output try2.pdf