Explorar el Código

Defined STDOUT in entry scripts in case console application is running via CGI

Alexander Makarov hace 12 años
padre
commit
5d01d3a752
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      yii

+ 2 - 1
yii

@@ -10,8 +10,9 @@
 
 defined('YII_DEBUG') or define('YII_DEBUG', true);
 
-// fcgi doesn't have STDIN defined by default
+// fcgi doesn't have STDIN and STDOUT defined by default
 defined('STDIN') or define('STDIN', fopen('php://stdin', 'r'));
+defined('STDIN') or define('STDOUT', fopen('php://stdout', 'w'));
 
 require(__DIR__ . '/vendor/autoload.php');
 require(__DIR__ . '/vendor/yiisoft/yii2/Yii.php');