本文整理匯總了PHP中Setup::start方法的典型用法代碼示例。如果您正苦於以下問題:PHP Setup::start方法的具體用法?PHP Setup::start怎麽用?PHP Setup::start使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Setup
的用法示例。
在下文中一共展示了Setup::start方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: setup_php_print
} else {
$args[substr($argv[$i], 1)] = '';
}
}
}
}
}
if (isset($args['h'])) {
setup_php_print('usage: ' . basename(__FILE__) . ' [-install target_package]', null);
exit;
}
if (is_file($jump_path = $pwd . '/rhaco2.php')) {
@(require_once $jump_path);
}
if (!class_exists('Object')) {
$jump_path = $pwd . '/rhaco2.php';
file_put_contents($jump_path, file_get_contents(constant('_CORE_URL_')));
setup_php_print('core installed. `' . $jump_path . '`', '1;34');
include_once $jump_path;
}
} catch (Exception $e) {
setup_php_print($e->getMessage());
}
setup_php_print('use `' . $jump_path . '`', '35');
}
if (class_exists('Object')) {
Setup::start();
} else {
setup_php_print('core not found');
}
exit;