This is a bit long, but personally I prefer to use the standard C defines in my code.
<?php
define('ENOTSOCK', 88); define('EDESTADDRREQ', 89); define('EMSGSIZE', 90); define('EPROTOTYPE', 91); define('ENOPROTOOPT', 92); define('EPROTONOSUPPORT', 93); define('ESOCKTNOSUPPORT', 94); define('EOPNOTSUPP', 95); define('EPFNOSUPPORT', 96); define('EAFNOSUPPORT', 97); define('EADDRINUSE', 98); define('EADDRNOTAVAIL', 99); define('ENETDOWN', 100); define('ENETUNREACH', 101); define('ENETRESET', 102); define('ECONNABORTED', 103); define('ECONNRESET', 104); define('ENOBUFS', 105); define('EISCONN', 106); define('ENOTCONN', 107); define('ESHUTDOWN', 108); define('ETOOMANYREFS', 109); define('ETIMEDOUT', 110); define('ECONNREFUSED', 111); define('EHOSTDOWN', 112); define('EHOSTUNREACH', 113); define('EALREADY', 114); define('EINPROGRESS', 115); define('EREMOTEIO', 121); define('ECANCELED', 125); ?>