PageRenderTime 42ms CodeModel.GetById 17ms RepoModel.GetById 1ms app.codeStats 0ms

/hphp/test/zend/good/ext/sockets/tests/socket_select.php

http://github.com/facebook/hiphop-php
PHP | 13 lines | 12 code | 1 blank | 0 comment | 3 complexity | bbe39586d9724009837ba2dd9f7a05d5 MD5 | raw file
Possible License(s): LGPL-2.1, BSD-2-Clause, BSD-3-Clause, MPL-2.0-no-copyleft-exception, MIT, LGPL-2.0, Apache-2.0
  1. <?hh <<__EntryPoint>> function main(): void {
  2. $sockets = varray[];
  3. if (strtolower(substr(PHP_OS, 0, 3)) == 'win') {
  4. $domain = AF_INET;
  5. } else {
  6. $domain = AF_UNIX;
  7. }
  8. socket_create_pair($domain, SOCK_STREAM, 0, inout $sockets);
  9. $write = null;
  10. $except = null;
  11. var_dump(socket_select(inout $sockets, inout $write, inout $except, 0));
  12. }