You've already forked qlg.tsgz.moe
							
							
		
			
				
	
	
		
			10 lines
		
	
	
		
			182 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			182 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
| <?php
 | |
| use Swoole\Coroutine as co;
 | |
| 
 | |
| $fp = fopen(__DIR__ . "/test.data", "a+");
 | |
| 
 | |
| co::create(function () use ($fp)
 | |
| {
 | |
|     $r =  co::fwrite($fp, "hello world\n", 5);
 | |
|     var_dump($r);
 | |
| }); |