vote up 2 vote down star

I am trying to proxy through php for a JS RSS feed. The company I am doing this for may or may not want cURL installed. If that is the case I may need some sort of library that can simply be included in php rather than go through apache and all of that. Is there a library that can handle something like that? What other options do I have in this case?

Thanks!

flag

2 Answers

vote up 3 vote down check

Zend_HTTP provides a wrapper for fopen, file_get_contents and CURL out of the box, it makes it much more simpler to store / read cookies, make POST requests and so on.

link|flag
vote up 0 vote down

wget, fopen, and file_get_contents are other options you can use to use for a proxy.

link|flag
and file_get_contents – Ben James Nov 3 at 19:09
file_get_contents is an easier way to use fopen, but, yes, that is an option. – CodeJoust Nov 3 at 23:59
@CodeJoust: file_get_contents is not the same as using fopen. "file_get_contents() is the preferred way to read the contents of a file into a string. It will use memory mapping techniques if supported by your OS to enhance performance." – eyze Nov 4 at 9:36

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.