memo

memo dayo.

2010-12-16から1日間の記事一覧

コマンドを実行して結果を取得する

php

// ============================================== function do_command ($str_cmd, $str_in=''){ // define $descriptorspec = array( 0 => array('pipe', 'r') ,1 => array('pipe', 'w') ,2 => array('pipe', 'w') ); // init $bol_rtn = False; $str_ou…