• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP getopt函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了PHP中getopt函数的典型用法代码示例。如果您正苦于以下问题:PHP getopt函数的具体用法?PHP getopt怎么用?PHP getopt使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了getopt函数的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。

示例1: getOptions

function getOptions($options)
{
    $opt;
    $short = '';
    $long = array();
    $map = array();
    foreach ($options as $option) {
        $req = isset($option['required']) ? $option['required'] ? ':' : '::' : '';
        if (!empty($option['short'])) {
            $short .= $option['short'] . $req;
        }
        if (!empty($option['long'])) {
            $long[] = $option['long'] . $req;
        }
        if (!empty($option['short']) && !empty($option['long'])) {
            $map[$option['short']] = $option['long'];
        }
    }
    $arguments = getopt($short, $long);
    foreach ($map as $s => $l) {
        if (isset($arguments[$s]) && isset($arguments[$l])) {
            unset($arguments[$s]);
            continue;
        }
        if (isset($arguments[$s])) {
            $arguments[$l] = $arguments[$s];
            unset($arguments[$s]);
            continue;
        }
    }
    return $arguments;
}
开发者ID:hoborglabs,项目名称:dashboard,代码行数:32,代码来源:install.php


示例2: parseCliArguments

 protected function parseCliArguments()
 {
     // Prepare for getopt(). Note that it supports "require value" for cli args,
     // but we use our own format instead (see also php.net/getopt).
     $getoptShort = '';
     $getoptLong = array();
     foreach ($this->flags as $flagKey => $flagInfo) {
         switch ($flagInfo['type']) {
             case 'value':
                 $getoptShort .= $flagKey . '::';
                 break;
             case 'boolean':
                 $getoptShort .= $flagKey;
                 break;
         }
     }
     foreach ($this->options as $optionName => $optionInfo) {
         switch ($optionInfo['type']) {
             case 'value':
                 $getoptLong[] = $optionName . '::';
                 break;
             case 'boolean':
                 $getoptLong[] = $optionName;
                 break;
         }
     }
     $parsed = getopt($getoptShort, $getoptLong);
     if (!is_array($parsed)) {
         $this->error('Parsing command line arguments failed.');
     }
     $this->parsed = $parsed;
 }
开发者ID:TestArmada,项目名称:admiral,代码行数:32,代码来源:MaintenanceScript.php


示例3: handle

class CLIOptionsHandler
{
    /**
   * Accept the REPL object and perform any setup necessary from the CLI flags.
   *
   * @param Boris $boris
   */
    public function handle($boris)
    {
        $args = getopt('hvr:', array('help', 'version', 'require:'));
        foreach ($args as $option => $value) {
            switch ($option) {
                /*
         * Sets files to load at startup, may be used multiple times,
         * i.e: boris -r test.php,foo/bar.php -r ba/foo.php --require hey.php
         */
                case 'r':
                case 'require':
                    $this->_handleRequire($boris, $value);
                    break;
                    /*
         * Show Usage info
         */
                /*
         * Show Usage info
         */
开发者ID:RqHe,项目名称:aunet1,代码行数:26,代码来源:CLIOptionsHandler.php


示例4: _initOptParams

 /**
  * Инициализируем переменные с коммандной строки
  *
  */
 protected function _initOptParams()
 {
     $arrayInput = getopt(false, array('url:'));
     if ($arrayInput && array_key_exists('url', $arrayInput)) {
         $_SERVER['REQUEST_URI'] = $arrayInput['url'];
     }
 }
开发者ID:kytvi2p,项目名称:ZettaFramework,代码行数:11,代码来源:BootstrapQuick.php


示例5: get_opts

function get_opts()
{
    $short_opts = "u:c:h::";
    $long_opts = array("bccwarn:", "bcccrit:", "sirwarn:", "sircrit:", "user:", "pass:");
    $options = getopt($short_opts, $long_opts);
    return $options;
}
开发者ID:rjsmelo,项目名称:tiki,代码行数:7,代码来源:check_tiki.php


示例6: init

 public function init()
 {
     function addopt($opt)
     {
         cli::$longopts[] = $opt;
         cli::$shortopts = cli::$shortopts . substr($opt, 0, 1);
     }
     $elems = array("help" => "Display this menu");
     foreach (array_merge(data::$elements, $elems) as $name => $element) {
         addopt($name);
     }
     $options = getopt(cli::$shortopts, cli::$longopts);
     $realopts = array();
     foreach ($options as $name => $option) {
         foreach (cli::$longopts as $opt) {
             if (substr($name, 0, 1) == substr($opt, 0, 1)) {
                 $name = $opt;
                 break;
             }
         }
         $realopts[$name] = $option;
     }
     cli::$cli_opts = $realopts;
     if (in_array("help", array_keys($realopts))) {
         foreach (array_merge(data::$elements, $elems) as $name => $element) {
             echo $name . "\t\t\t" . $element . PHP_EOL;
         }
         exit(0);
     }
 }
开发者ID:roelforg,项目名称:UbFoInfo,代码行数:30,代码来源:cli.php


示例7: zpa_handle

function zpa_handle()
{
    $shortoptions = "w:r:d:li:h:u:p:";
    $options = getopt($shortoptions);
    $mapi = MAPI_SERVER;
    $user = "SYSTEM";
    $pass = "";
    if (isset($options['h'])) {
        $mapi = $options['h'];
    }
    if (isset($options['u']) && isset($options['p'])) {
        $user = $options['u'];
        $pass = $options['p'];
    }
    $zarafaAdmin = zpa_zarafa_admin_setup($mapi, $user, $pass);
    if (isset($zarafaAdmin['adminStore']) && isset($options['l'])) {
        zpa_get_userlist($zarafaAdmin['adminStore']);
    } elseif (isset($zarafaAdmin['adminStore']) && isset($options['d']) && !empty($options['d'])) {
        zpa_get_userdetails($zarafaAdmin['adminStore'], $zarafaAdmin['session'], trim($options['d']));
    } elseif (isset($zarafaAdmin['adminStore']) && isset($options['w']) && !empty($options['w']) && isset($options['i']) && !empty($options['i'])) {
        zpa_wipe_device($zarafaAdmin['adminStore'], $zarafaAdmin['session'], trim($options['w']), trim($options['i']));
    } elseif (isset($zarafaAdmin['adminStore']) && isset($options['r']) && !empty($options['r']) && isset($options['i']) && !empty($options['i'])) {
        zpa_remove_device($zarafaAdmin['adminStore'], $zarafaAdmin['session'], trim($options['r']), trim($options['i']));
    } else {
        echo "Usage:\nz-push-admin.sh [actions] [options]\n\nActions: [-l] | [[-d|-w|-r] username]\n\t-l\t\tlist users\n\t-d user\t\tshow user devices\n\t-w user\t\twipe user device, '-i DeviceId' option required\n\t-r user\t\tremove device from list, '-i DeviceId' option required\n\nGlobal options: [-h path] [[-u remoteuser] [-p password]]\n\t-h path\t\tconnect through <path>, e.g. file:///var/run/socket\n\t-u remoteuser\tlogin as remoteuser\n\t-p password\tpassword of the remoteuser\n\n";
    }
}
开发者ID:BackupTheBerlios,项目名称:z-push-svn,代码行数:27,代码来源:z-push-admin.php


示例8: run

 public function run($argc, array $argv)
 {
     $options = getopt("c::h::", ["clean:", "help::"]);
     if (isset($options['h']) || isset($options['help'])) {
         self::usage();
         return;
     }
     $cleanOutput = false;
     if (isset($options['c']) || isset($options['clean'])) {
         $cleanOutput = true;
     }
     $list = [];
     \Phasty\Tman\TaskManager::getInstance()->scanDir(function ($className) use(&$list, $cleanOutput) {
         $runTimes = $className::getRunTime();
         if (!$runTimes) {
             return;
         }
         $className = \Phasty\Tman\TaskManager::fromClassName(substr($className, strlen($this->cfg["tasksNs"])));
         foreach ((array) $runTimes as $args => $runTime) {
             if (substr(trim($runTime), 0, 1) === '#' && $cleanOutput) {
                 continue;
             }
             $list[] = "{$runTime} " . $this->cfg["tman"] . " run " . "{$className}" . (is_string($args) ? " {$args}" : "");
         }
     });
     if (!empty($list)) {
         echo implode(" #tman:" . $this->cfg["tman"] . "\n", $list) . " #tman:" . $this->cfg["tman"] . "\n";
     }
 }
开发者ID:phasty,项目名称:tman,代码行数:29,代码来源:Crontab.php


示例9: handler

 /**
  * @param array $config
  */
 function handler(array $cfg = [])
 {
     $key = ['listen::', 'indexer::', 'conf::', 'build::', 'status::'];
     $opt = getopt('', $key);
     $this->cmd = 'listen';
     foreach ($key as $v) {
         $v = str_replace('::', '', $v);
         if (isset($opt[$v])) {
             $this->cmd = $v;
             $this->args = $opt[$v];
             break;
         }
     }
     $this->default_value($cfg, 'redis', 'tcp://127.0.0.1:6379');
     $this->default_value($cfg, 'agent_log', __DIR__ . '/agent.log');
     $this->default_value($cfg, 'type', 'log');
     $this->default_value($cfg, 'input_sync_memory', 5 * 1024 * 1024);
     $this->default_value($cfg, 'input_sync_second', 5);
     $this->default_value($cfg, 'parser', [$this, 'parser']);
     $this->default_value($cfg, 'log_level', 'product');
     $this->default_value($cfg, 'elastic', ['http://127.0.0.1:9200']);
     $this->default_value($cfg, 'prefix', 'phplogstash');
     $this->default_value($cfg, 'shards', 5);
     $this->default_value($cfg, 'replicas', 1);
     $this->config = $cfg;
     $this->redis();
     return $this;
 }
开发者ID:anythink-wx,项目名称:php-logstash,代码行数:31,代码来源:logstash.php


示例10: getCliParams

/**
 * Permet de récupérer les arguments de la console
 * Permet surtout de toujours avoir les arguments obligatoire par le système.
 * 
 * @link http://php.net/manual/fr/function.getopt.php
 * 
 * @param string $options  : Chaque caractère dans cette chaîne sera utilisé en tant que caractères optionnels et 
 *                           devra correspondre aux options passées, commençant par un tiret simple (-). 
 *                           Par exemple, une chaîne optionnelle "x" correspondra à l'option -x. 
 *                           Seuls a-z, A-Z et 0-9 sont autorisés.
 * @param array  $longopts : Un tableau d'options. Chaque élément de ce tableau sera utilisé comme option et devra 
 *                           correspondre aux options passées, commençant par un tiret double (--). 
 *                           Par exemple, un élément longopts "opt" correspondra à l'option --opt.
 *                           Le paramètre options peut contenir les éléments suivants :
 *                              * Caractères individuels (n'accepte pas de valeur)
 *                              * Caractères suivis par un deux-points (le paramètre nécessite une valeur)
 *                              * Caractères suivis par deux deux-points (valeur optionnelle)
 *                           Les valeurs optionnelles sont les premiers arguments après la chaîne. 
 *                           Si une valeur est requise, peu importe que la valeur soit suivi d'un espace ou non.
 * 
 * @return array
 */
function getCliParams($options, $longopts = array())
{
    $longopts = array_merge($longopts, array('type_site::'));
    $opt = getopt('f:' . $options, $longopts);
    unset($opt['f']);
    return $opt;
}
开发者ID:bulton-fr,项目名称:bfw,代码行数:29,代码来源:cli.php


示例11: init

 /** 初始化 */
 private function init()
 {
     $this->is_win = strstr(PHP_OS, 'WIN') ? true : false;
     $this->is_cli = PHP_SAPI == 'cli' ? true : false;
     $this->is_cgi = 0 === strpos(PHP_SAPI, 'cgi') || false !== strpos(PHP_SAPI, 'fcgi') ? true : false;
     if (!$this->is_cli) {
         $this->http_host = isset($_SERVER['HTTP_HOST']) ? strtolower($_SERVER['HTTP_HOST']) : '';
         $this->request_uri = isset($_SERVER['REQUEST_URI']) ? $_SERVER['REQUEST_URI'] : '';
         $pos = strpos($this->request_uri, '?');
         $this->request_path = $pos === false ? $this->request_uri : substr($this->request_uri, 0, $pos);
         $this->query_string = isset($_SERVER['QUERY_STRING']) ? $_SERVER['QUERY_STRING'] : '';
         $this->request_method = isset($_SERVER['REQUEST_METHOD']) ? strtoupper($_SERVER['REQUEST_METHOD']) : '';
         $this->is_ajax = isset($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest' || !empty($_POST[$this->conf['PARAMS_AJAX_SUBMIT']]) || !empty($_GET[$this->conf['PARAMS_AJAX_SUBMIT']]) ? true : false;
         $this->is_get = $this->request_method === 'GET' ? true : false;
         $this->is_post = $this->request_method === 'POST' ? true : false;
         $this->is_put = $this->request_method === 'PUT' ? true : false;
         $this->is_delete = $this->request_method === 'DELETE' ? true : false;
     } else {
         $opt = getopt('r:', [$this->conf['URL_REQUEST_URI'] . ':']);
         $this->request_uri = !empty($opt['r']) ? $opt['r'] : (!empty($opt[$this->conf['URL_REQUEST_URI']]) ? $opt[$this->conf['URL_REQUEST_URI']] : '');
         $pos = strpos($this->request_uri, '?');
         $this->request_path = $pos === false ? $this->request_uri : substr($this->request_uri, 0, $pos);
         $this->query_string = $pos === false ? '' : substr($this->request_uri, $pos + 1);
     }
 }
开发者ID:dongnan,项目名称:MicroRouter,代码行数:26,代码来源:Router.php


示例12: handleArguments

 private function handleArguments()
 {
     $options = getopt('D::H::E::I::A', array('debug::', 'help::', 'exclude::', 'include::', 'all::'));
     foreach ($options as $option => $value) {
         switch ($option) {
             case 'D':
             case 'debug':
                 Utils::log('Debug mode enabled');
                 $this->debugMode = true;
                 break;
             case 'H':
             case 'help':
                 Utils::help();
                 exit;
             case 'E':
             case 'exclude':
                 $this->insertSpecification($value);
                 break;
             case 'I':
             case 'include':
                 $this->insertSpecification($value, false);
                 break;
             case 'A':
             case 'all':
                 Utils::logf('Possible units are: %s', implode(',', $this->units));
                 exit;
         }
     }
     $this->validateUnits();
 }
开发者ID:dangermark,项目名称:chameleonlabs,代码行数:30,代码来源:Runner.php


示例13: readConfig

 /**
  * @param $configFilename
  * @return FileWatcher
  */
 public function readConfig($configFilename)
 {
     include $configFilename;
     $this->_config = $config;
     $this->_log('Config file loaded');
     if (php_sapi_name() == "cli") {
         $longopts = array('password::', 'overallHash::');
         $options = getopt('', $longopts);
         if (isset($options['password'])) {
             $this->_providedPassword = $options['password'];
         }
         if (isset($options['overallHash'])) {
             $this->_providedOverallHash = $options['overallHash'];
         }
     } else {
         // not in cli-mode, try to get password from $_GET or $_POST
         if (isset($_POST['password'])) {
             $this->_providedPassword = $_POST['password'];
         } elseif ($_GET['password']) {
             $this->_providedPassword = $_GET['password'];
         }
         if (isset($_POST['overallHash'])) {
             $this->_providedOverallHash = $_POST['overallHash'];
         } elseif ($_GET['overallHash']) {
             $this->_providedOverallHash = $_GET['overallHash'];
         }
     }
     return $this;
 }
开发者ID:jassyr,项目名称:FileWatcher,代码行数:33,代码来源:FileWatcher.php


示例14: __construct

 function __construct($options)
 {
     $this->reset($options);
     pcntl_signal(SIGTERM, array("JAXLHTTPd", "shutdown"));
     pcntl_signal(SIGINT, array("JAXLHTTPd", "shutdown"));
     $options = getopt("p:b:");
     foreach ($options as $opt => $val) {
         switch ($opt) {
             case 'p':
                 $this->settings['port'] = $val;
                 break;
             case 'b':
                 $this->settings['maxq'] = $val;
             default:
                 break;
         }
     }
     $this->httpd = socket_create(AF_INET, SOCK_STREAM, SOL_TCP);
     socket_set_option($this->httpd, SOL_SOCKET, SO_REUSEADDR, 1);
     socket_bind($this->httpd, 0, $this->settings['port']);
     socket_listen($this->httpd, $this->settings['maxq']);
     $this->id = $this->getResourceID($this->httpd);
     $this->clients = array("0#" . $this->settings['port'] => $this->httpd);
     echo "JAXLHTTPd listening on port " . $this->settings['port'] . PHP_EOL;
 }
开发者ID:pavl00,项目名称:Kalkun,代码行数:25,代码来源:jaxl.httpd.php


示例15: run

 public function run()
 {
     $this->buffer = new \Threaded();
     $opts = getopt("", ["disable-readline"]);
     if (extension_loaded("readline") and $this->stream === "php://stdin" and !isset($opts["disable-readline"])) {
         $this->readline = true;
     } else {
         $this->readline = false;
         $this->fp = fopen($this->stream, "r");
         stream_set_blocking($this->fp, 1);
         //Non-blocking STDIN won't work on Windows
     }
     $lastLine = microtime(true);
     while (true) {
         if (($line = $this->readLine()) !== "") {
             $this->buffer->synchronized(function (\Threaded $buffer, $line) {
                 $buffer[] = preg_replace("#\\x1b\\x5b([^\\x1b]*\\x7e|[\\x40-\\x50])#", "", $line);
             }, $this->buffer, $line);
             $lastLine = microtime(true);
         } elseif (microtime(true) - $lastLine <= 0.1) {
             //Non blocking! Sleep to save CPU
             usleep(40000);
         }
     }
 }
开发者ID:boybook,项目名称:PocketMine-MP,代码行数:25,代码来源:CommandReader.php


示例16: get_opts

function get_opts()
{
    $short_opts = "u:h::";
    $long_opts = array("user:", "pass:");
    $options = getopt($short_opts, $long_opts);
    return $options;
}
开发者ID:rjsmelo,项目名称:tiki,代码行数:7,代码来源:check_tiki-new.php


示例17: __construct

 public function __construct($volume = null, $region = null, $quiet = null, $noOperation = null, $verbose = null, $description = null)
 {
     if ($volume == null) {
         // Check parameters
         $params = getopt('v:r::d::qno');
         $volume = isset($params['v']) ? $params['v'] : null;
         $region = isset($params['r']) ? $params['r'] : null;
         $quiet = isset($params['q']) ? $params['q'] : null;
         $noOperation = isset($params['n']) ? $params['n'] : null;
         $verbose = isset($params['o']) ? $params['o'] : null;
         $description = isset($params['d']) ? $params['d'] : null;
     }
     $this->volume = isset($volume) ? $volume : exit("EC2 Volume ID required\n");
     $this->region = isset($region) && array_key_exists($region, self::$regions) ? $region : 'us-east-1';
     $this->quiet = isset($quiet) ? true : false;
     $this->noOperation = isset($noOperation) ? true : false;
     $this->verbose = isset($verbose) ? true : false;
     $this->description = isset($description) ? $description : null;
     // Print settings
     $this->printLine("\n", true);
     $this->printLine("SETTINGS\n");
     $this->printLine("========\n");
     $this->printLine("Volume: .......... " . $this->volume . "\n");
     $this->printLine("Region: .......... " . self::$regions[$this->region] . "\n");
     $this->printLine("Quiet: ........... " . ($this->quiet ? 'Y' : 'N') . "\n");
     $this->printLine("No Operation: .... " . ($this->noOperation ? 'Y' : 'N') . "\n");
     $this->printLine("Verbose: ......... " . ($this->verbose ? 'Y' : 'N') . "\n\n");
     // Setup EC2 Client
     $this->client = Ec2Client::factory(['profile' => 'ec2snapshot', 'region' => $this->region]);
 }
开发者ID:jdelaune,项目名称:aws-ec2-snapshot-management,代码行数:30,代码来源:Manager.php


示例18: getOptions

 public static function getOptions()
 {
     $parameters = array('s:' => 'source:', 'o:' => 'output:', 'e:' => 'exclude:', 'E:' => 'exclude-classes:');
     $getops = getopt(implode(array_keys($parameters)), $parameters);
     $options = array('source' => __DIR__ . "/../lib/", 'output' => WeixinFile::NS_ROOT . '.php', 'exclude' => array());
     foreach ($getops as $option => $value) {
         switch ($option) {
             case 's':
             case 'source':
                 $options['source'] = $value;
                 break;
             case 'o':
             case 'output':
                 $options['output'] = $value;
                 break;
             case 'E':
             case 'exclude-classes':
                 $options['exclude'] = @file($value, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES) ?: $value;
                 break;
             case 'e':
             case 'exclude':
                 $options['exclude'] = is_array($value) ? $value : array($value);
                 break;
         }
     }
     return $options;
 }
开发者ID:devsnippet,项目名称:weixin,代码行数:27,代码来源:create-single-file.php


示例19: getArgs

 public static function getArgs()
 {
     $argv = $_SERVER['argv'];
     $deploy = dirname(__FILE__) . DIRECTORY_SEPARATOR . 'deploy.ini';
     $commands = array('-l', '-r', '-c', '-d', '--revert', '--log', '--repo');
     $deploy_file = isset($argv[1]) ? end($argv) : "deploy.ini";
     if (!in_array($deploy_file, $commands)) {
         $deploy = $deploy_file . (substr($deploy_file, -4) === '.ini' ? '' : '.ini');
     }
     $opts = getopt("lr:d:c:", array("revert", "log::", "repo:"));
     if (isset($opts['log'])) {
         define('WRITE_TO_LOG', $opts['revert'] ? $opts['revert'] : 'git_deploy_php_log.txt');
     }
     if (isset($opts['d'])) {
         $deploy = $opts['d'];
     }
     if (isset($opts['c'])) {
         $opts['r'] = $opts['c'];
     }
     if (isset($opts['repo'])) {
         $repo_path = $opts['repo'];
     } else {
         $repo_path = getcwd() . DIRECTORY_SEPARATOR;
     }
     return array('config_file' => $deploy, 'target_commit' => isset($opts['r']) ? $opts['r'] : 'HEAD', 'list_only' => isset($opts['l']), 'revert' => isset($opts['revert']), 'repo_path' => $repo_path);
 }
开发者ID:rudraks,项目名称:application,代码行数:26,代码来源:Config.php


示例20: start

 public static function start()
 {
     $logger = new DefaultLogger('starter');
     $longopts = ['node:', 'worker', 'manager'];
     $params = getopt("", $longopts);
     if (!isset($params['node'])) {
         throw new \Exception('Parameter --node is required. It must be a name of Celium Node.');
     }
     if (isset($params['worker'])) {
         $logger->info('Worker is starting...');
         if (!isset(self::$workers[$params['node']])) {
             throw new \Exception('Workers for ' . $params['node'] . ' not found');
         }
         $function = self::$workers[$params['node']];
         $worker = $function($params['node'], $params);
         if (!$worker instanceof Worker) {
             throw new \Exception('onStartManager function must return the object of \\Celium\\Services\\Worker');
         }
         $worker->start();
     } elseif (isset($params['manager'])) {
         $logger->info('Manager is starting...');
         if (!isset(self::$managers[$params['node']])) {
             throw new \Exception('Managers for ' . $params['node'] . ' not found');
         }
         $function = self::$managers[$params['node']];
         $manager = $function($params['node'], $params);
         if (!$manager instanceof Manager) {
             throw new \Exception('onStartManager function must return the object of \\Celium\\Services\\Manager');
         }
         $manager->start('127.0.0.1:4730', 1000 * 1000);
         // @todo Make it configurable
     } else {
         throw new \Exception("Nothing to start. Use --worker or --manager options.\n");
     }
 }
开发者ID:zarincheg,项目名称:celium,代码行数:35,代码来源:Starter.php



注:本文中的getopt函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP getoptions函数代码示例发布时间:2022-05-15
下一篇:
PHP getonlineip函数代码示例发布时间:2022-05-15
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap