[李景山php]每天TP5-20170120|thinkphp5-Process.php-2

/**
 * @var array
 */
public static $exitCodes = [// 异常退出 代码
    0   => ‘OK‘,// 正常退出
    1   => ‘General error‘,// 一般性错误
    2   => ‘Misuse of shell builtins‘, // 缺少脚本
    126 => ‘Invoked command cannot execute‘,// 执行命令错误
    127 => ‘Command not found‘,// 命令没找到
    128 => ‘Invalid exit argument‘,// 输入 参数异常
    // signals
    129 => ‘Hangup‘,// 上行
    130 => ‘Interrupt‘,// 中断
    131 => ‘Quit and dump core‘,// 退出 并且 打印 内核
    132 => ‘Illegal instruction‘,//
    133 => ‘Trace/breakpoint trap‘,
    134 => ‘Process aborted‘,
    135 => ‘Bus error: "access to undefined portion of memory object"‘,
    136 => ‘Floating point exception: "erroneous arithmetic operation"‘,
    137 => ‘Kill (terminate immediately)‘,
    138 => ‘User-defined 1‘,
    139 => ‘Segmentation violation‘,
    140 => ‘User-defined 2‘,
    141 => ‘Write to pipe with no one reading‘,
    142 => ‘Signal raised by alarm‘,
    143 => ‘Termination (request to terminate)‘,
    // 144 - not defined
    145 => ‘Child process terminated, stopped (or continued*)‘,
    146 => ‘Continue if stopped‘,
    147 => ‘Stop executing temporarily‘,
    148 => ‘Terminal stop signal‘,
    149 => ‘Background process attempting to read from tty ("in")‘,
    150 => ‘Background process attempting to write to tty ("out")‘,
    151 => ‘Urgent data available on socket‘,
    152 => ‘CPU time limit exceeded‘,
    153 => ‘File size limit exceeded‘,
    154 => ‘Signal raised by timer counting virtual time: "virtual timer expired"‘,
    155 => ‘Profiling timer expired‘,
    // 156 - not defined
    157 => ‘Pollable event‘,
    // 158 - not defined
    159 => ‘Bad syscall‘,
];

/**
 * 构造方法
 * @param string         $commandline 指令
 * @param string|null    $cwd         工作目录
 * @param array|null     $env         环境变量
 * @param string|null    $input       输入
 * @param int|float|null $timeout     超时时间
 * @param array          $options     proc_open的选项
 * @throws \RuntimeException
 * @api
 */
public function __construct($commandline, $cwd = null, array $env = null, $input = null, $timeout = 60, array $options = [])
{// 命令 工作目录 环境变量 输入 超时时间 选项 数组
    if (!function_exists(‘proc_open‘)) {// 如果进程 处理函数 不存在 则 报错
        throw new \RuntimeException(‘The Process class relies on proc_open, which is not available on your PHP installation.‘);
    }

    $this->commandline = $commandline;// 指令
    $this->cwd         = $cwd;// 目录

    if (null === $this->cwd && (defined(‘ZEND_THREAD_SAFE‘) || ‘\\‘ === DS)) {//
        // 如果目录为空,并且 定义了 zend_thread_safe 线程安全 并且 不是 windos 下
        $this->cwd = getcwd();// 通过获取 工作目录的 方式 进行 获取 数据
    }
    if (null !== $env) {// 如果环境变量 不为空
        $this->setEnv($env);// 设置环境变量
    }

    $this->input = $input;// 输入获取
    $this->setTimeout($timeout);// 设置超时时间
    $this->useFileHandles               = ‘\\‘ === DS;// 是否使用文本处理
    $this->pty                          = false;// 状态
    $this->enhanceWindowsCompatibility  = true;// 能够执行窗口命令
    $this->enhanceSigchildCompatibility = ‘\\‘ !== DS && $this->isSigchildEnabled();// 能够执行 子命令
    $this->options                      = array_replace([// 选项
        ‘suppress_errors‘ => true,
        ‘binary_pipes‘    => true
    ], $options);
}// 构造函数 就是 进行了 各种 函数的初始化

public function __destruct()// 析构函数
{
    $this->stop();
}

public function __clone()// 复制函数
{
    $this->resetProcessData();
}

/**
 * 运行指令
 * @param callback|null $callback
 * @return int
 */
public function run($callback = null)// 运行 函数
{
    $this->start($callback);

    return $this->wait();
}
时间: 2024-10-21 05:17:35

[李景山php]每天TP5-20170120|thinkphp5-Process.php-2的相关文章

[李景山php]每天TP5-20170124|thinkphp5-Process.php-6

/**  * 返回导致子进程终止其执行的数.  * @return int  */ public function getTermSignal() {// 返回 子进程 终止其执行的数     $this->requireProcessIsTerminated(__FUNCTION__);// 确认 进程 函数 已经终止,否则 抛出异常     if ($this->isSigchildEnabled()) {// 确认是否 子进程         throw new \RuntimeExce

[李景山php]每天TP5-20170123|thinkphp5-Process.php-5

    /**      * 开启从底层过程获取输出和错误输出.      * @return Process      * @throws \RuntimeException      */     public function enableOutput()     {// enableOutput         if ($this->isRunning()) {// 如果 运行             throw new \RuntimeException('Enabling outpu

[李景山php]每天TP5-20170122|thinkphp5-Process.php-4

/**  * 获取PID  * @return int|null  * @throws \RuntimeException  */ public function getPid() {// 获取进程 ID     if ($this->isSigchildEnabled()) {         throw new \RuntimeException('This PHP has been compiled with --enable-sigchild. The process identifie

[李景山php]每天TP5-20161221|thinkphp5-jump.php

<?php /**  * 用法:  * load_trait('controller/Jump');  * class index  * {  *     use \traits\controller\Jump;  *     public function index(){  *         $this->error();  *         $this->redirect();  *     }  * }  */ namespace traits\controller; use

[李景山php]每天TP5-20170119|thinkphp5-Process.php-1

<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK ] // +---------------------------------------------------------------------- // | Copyright (c) 2006~2015 http://thinkphp.cn All 

[李景山php]每天laravel-20160912|FileSystem-3

    /**      * Copy a file to a new location.      *      * @param  string  $path      * @param  string  $target      * @return bool      */     public function copy($path, $target)     {         return copy($path, $target);     }// wrap a copy funct

[李景山php]每天TP5-20170125|thinkphp5-Process.php-7

    /**      * 获取输入      * @return null|string      */     public function getInput()     {         return $this->input;     }// 获取输入信息     /**      * 设置输入      * @param mixed $input      * @return self      */     public function setInput($input)   

[李景山php]每天laravel-20161131|BelongsToMany.php-3

    /**      * Save a new model and attach it to the parent model.      *      * @param  \Illuminate\Database\Eloquent\Model  $model      * @param  array  $joining      * @param  bool   $touch      * @return \Illuminate\Database\Eloquent\Model      *

安装TP5(thinkphp5)Composer

1.下载 composer.phar (http:\\www.cnblogs.com/JANCHAN/7735882.html),把composer.phar放入php中(例如php-5.4.45) 再建一个composer.bat放在php中(放在同级的文件夹中)---在里面写    @php "%~dp0composer.phar" %* 2.去网站根目录中的  配置  php.ini 改openssl.dll和fileinfo.dll去掉分号(按ctrl+F搜索) 3.写环境变量