确定PHP文件是否作为`phar`存档的一部分运行

时间:2016-01-04 18:46:37

标签: php phar

有没有办法在运行时确定PHP文件是否作为phar存档的一部分运行?

即,本机实现可能看起来像这样

function isRunningAsPhar()
{
    $first_include = get_included_files()[0];
    return strpos($first_include, '.phar') !== false;
}

但是,如果用户已将phar重命名为具有不同的文件扩展名,或者通过符号链接删除文件扩展名,则可能无效。

2 个答案:

答案 0 :(得分:4)

您可以使用函数Phar::running();这为您提供了执行的phar存档的路径。如果设置了路径,那么它就是一个存档。

https://secure.php.net/manual/en/phar.running.php

手册示例:

<?php
$a = Phar::running(); // $a is "phar:///path/to/my.phar"
$b = Phar::running(false); // $b is "/path/to/my.phar"
?>

答案 1 :(得分:3)

这是一个很好的小函数,它会根据文件是否在PHAR Archive中运行而返回true或false

function isPhar() {
  return strlen(Phar::running()) > 0 ? true : false;
}

链接:http://lesichkov.co.uk/article/20170928111351676090/handy-php-functions-when-working-with-phar-archives

如何使用示例:

if(isPhar()){
    echo 'Script is running from PHAR';
} else {
    echo 'Script is running otside PHAR';
}