本文整理汇总了PHP中Frontend::handleCommandLine方法的典型用法代码示例。如果您正苦于以下问题:PHP Frontend::handleCommandLine方法的具体用法?PHP Frontend::handleCommandLine怎么用?PHP Frontend::handleCommandLine使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Frontend
的用法示例。
在下文中一共展示了Frontend::handleCommandLine方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Frontend
* PHP version 5.1.0+
*
* LICENSE: This source file is subject to the MIT license that is available
* through the world-wide-web at the following URI:
* http://opensource.org/licenses/mit-license.php
*
* @package PWAK
* @author ATEOR dev team <dev@ateor.com>
* @copyright 2003-2008 ATEOR <contact@ateor.com>
* @license http://opensource.org/licenses/mit-license.php MIT License
* @version SVN: $Id: framework.php,v 1.3 2008-05-15 11:18:49 david Exp $
* @link http://pwak.googlecode.com
* @since File available since release 0.1.0
* @filesource
*/
/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
/**
* $Source: /home/cvs/framework/bin/framework.php,v $
* Script de management des projets appelé en ligne de commande.
*
* @version CVS: $Id: framework.php,v 1.3 2008-05-15 11:18:49 david Exp $
* @author David JL <david@ateor.com>
* @copyright 2002-2006 ATEOR - All rights reserved
*/
define('PROJECT_ROOT', '.');
define('FRAMEWORK_ROOT', '.');
require_once 'framework.inc.php';
require_once 'lib/Frontend/Frontend.php';
$frontend = new Frontend();
$frontend->handleCommandLine();