python php 整理的零碎知识点

游戏准备
安装pygame

sudo pip2 install pygame
验证安装
python3   -m   pygame.example.aliens 
ps axu|grep "sync_orderinfo_new_by_hand.php"|grep -v "grep"|wc -l
php命令行的参数
$options = array(
    'deltatimes::',        // 增量同步时间, 默认120s
    'cmid::',              // 强制拉取客户id的信息
);
$arrInput = getopt('', $options);
$arrInput = array(
    'deltatimes'    =>  intval($arrInput['deltatimes']),     // 增量时间
    'cmid'          =>  $arrInput['cmid'],                   // 强制拉取的客户id
);

猜你喜欢

转载自blog.csdn.net/liuqun0319/article/details/88414687