📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
e-ticaretv3.demodesign.com.tr
/
vendor
/
react
/
stream
/
examples
📝
11-cat.php
← Geri Dön
<?php // Simple example piping everything from STDIN to STDOUT. // This allows you to output everything you type on your keyboard or to redirect // the pipes to show contents of files and other streams. // // $ php examples/11-cat.php // $ php examples/11-cat.php < README.md // $ echo hello | php examples/11-cat.php use React\EventLoop\Factory; use React\Stream\ReadableResourceStream; use React\Stream\WritableResourceStream; require __DIR__ . '/../vendor/autoload.php'; if (DIRECTORY_SEPARATOR === '\\') { fwrite(STDERR, 'Non-blocking console I/O not supported on Microsoft Windows' . PHP_EOL); exit(1); } $loop = Factory::create(); $stdout = new WritableResourceStream(STDOUT, $loop); $stdin = new ReadableResourceStream(STDIN, $loop); $stdin->pipe($stdout); $loop->run();
💾 Kaydet
İptal
📝 Yeniden Adlandır
İptal
Kaydet
🔐 Dosya İzinleri (chmod)
İzin Değeri:
Hızlı Seçim:
777
755
644
600
777
= Herkes okur/yazar/çalıştırır
755
= Sahip tam, diğerleri okur/çalıştırır
644
= Sahip okur/yazar, diğerleri okur
600
= Sadece sahip okur/yazar
İptal
Uygula