コード例 #1
0
ファイル: SocketHandler.php プロジェクト: gOOvER/EasySCP
 public static function Create()
 {
     self::$Socket = socket_create(AF_UNIX, SOCK_STREAM, 0);
     if (self::$Socket !== false) {
         return true;
     } else {
         return false;
     }
 }