当前位置: 首页>>代码示例>>PHP>>正文


PHP OS::isWindows方法代码示例

本文整理汇总了PHP中OS::isWindows方法的典型用法代码示例。如果您正苦于以下问题:PHP OS::isWindows方法的具体用法?PHP OS::isWindows怎么用?PHP OS::isWindows使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在OS的用法示例。


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

示例1: bold

 public static function bold($message)
 {
     if (!OS::isWindows()) {
         echo "[1m";
     }
     echo $message;
     if (!OS::isWindows()) {
         echo "[m";
     }
 }
开发者ID:Rhoban,项目名称:deps,代码行数:10,代码来源:Terminal.php

示例2: deleteContents

 /**
  * deleteContents of a folder recursively, but not the folder itself.
  *
  * On Windows systems this will try to remove the read-only attribute if needed.
  *
  * @param string $path Path of folder whose contents will be deleted
  *
  * @throws \RuntimeException Thrown when something could not be deleted.
  */
 public static function deleteContents($path)
 {
     if (!is_dir($path)) {
         return;
     }
     /** @var \SplFileInfo[] $files */
     $files = new \RecursiveIteratorIterator(new \RecursiveDirectoryIterator($path, \RecursiveDirectoryIterator::SKIP_DOTS), \RecursiveIteratorIterator::CHILD_FIRST);
     foreach ($files as $fileInfo) {
         if ($fileInfo->isDir()) {
             if (@rmdir($fileInfo->getRealPath()) === false) {
                 throw new \RuntimeException(sprintf("Unable to delete child folder '%s' in '%s': %s", $fileInfo->getFilename(), $fileInfo->getPathname(), error_get_last()['message']));
             }
         } elseif (@unlink($fileInfo->getRealPath()) === false) {
             if (OS::isWindows()) {
                 Exec::create('attrib', '-R', $fileInfo->getRealPath())->run();
                 if (@unlink($fileInfo->getPathname())) {
                     continue;
                 }
             }
             throw new \RuntimeException(sprintf("Unable to delete file '%s' in folder '%s': %s", $fileInfo->getFilename(), $fileInfo->getPathname(), error_get_last()['message']));
         }
     }
 }
开发者ID:nochso,项目名称:omni,代码行数:32,代码来源:Folder.php

示例3: escapeArgument

 /**
  * @param string $argument
  *
  * @return string
  */
 private function escapeArgument($argument)
 {
     // Always escape an empty argument so it doesn't get lost.
     if ($argument === '') {
         return escapeshellarg($argument);
     }
     if (!OS::isWindows()) {
         return $this->escapeLinuxArgument($argument);
     }
     return $this->escapeWindowsArgument($argument);
 }
开发者ID:nochso,项目名称:omni,代码行数:16,代码来源:Exec.php


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