初始化代码

This commit is contained in:
2025-12-22 14:34:25 +08:00
parent c2c5ae2fdd
commit a77dbc743f
1510 changed files with 213008 additions and 0 deletions

View File

@@ -0,0 +1,58 @@
<?php
namespace Swoole;
class Async
{
/**
* @return mixed
*/
public static function read($filename, $callback, $chunk_size = null, $offset = null)
{
}
/**
* @return mixed
*/
public static function write($filename, $content, $offset = null, $callback = null)
{
}
/**
* @return mixed
*/
public static function readFile($filename, $callback)
{
}
/**
* @return mixed
*/
public static function writeFile($filename, $content, $callback = null, $flags = null)
{
}
/**
* @return mixed
*/
public static function dnsLookup($hostname, $callback)
{
}
/**
* @return mixed
*/
public static function set(array $settings)
{
}
/**
* @return mixed
*/
public static function exec($command, $callback)
{
}
}