Can i use fsockopen to sites with sll?

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
User avatar
visonardo
Forum Contributor
Posts: 136
Joined: Mon Oct 02, 2006 7:49 pm
Location: Argentina, South America´s Sun.

Can i use fsockopen to sites with sll?

Post by visonardo »

Im using an script that import msn´s emails, but the problem is that with sll, it has curl but i dont know how fix that. I was thinking to do all curl sintax directly with fsockopen like we do with single sites.
User avatar
Chris Corbyn
Breakbeat Nuttzer
Posts: 13098
Joined: Wed Mar 24, 2004 7:57 am
Location: Melbourne, Australia

Post by Chris Corbyn »

I assume you mean SSL?

Code: Select all

$sock = fsockopen("ssl://server", .....);
Post Reply