Does my server have PHP Sockets? -


is there anyway tell if server has php sockets? script i'm using says needs them. have installed php5.

thanks.

an elegant way programmatically check php sockets support use get_loaded_extentions() method:

if (in_array('sockets', get_loaded_extensions()) {     // continue } else {     die ('no socket support.'); } 

your script way too. can inspect output phpinfo(); sockets extension.


Comments

Popular posts from this blog

SPSS keyboard combination alters encoding -

Add new record to the table by click on the button in Microsoft Access -

javascript - jQuery .height() return 0 when visible but non-0 when hidden -