File: ob_skipif.inc

package info (click to toggle)
php-zstd 0.14.0-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,536 kB
  • sloc: ansic: 30,009; asm: 382; xml: 179; makefile: 3
file content (4 lines) | stat: -rw-r--r-- 190 bytes parent folder | download
1
2
3
4
<?php
if (!extension_loaded('zstd')) die('skip need ext/zstd');
if (PHP_VERSION_ID < 80000) die('skip requires PHP 8.0+');
if (false === stristr(PHP_SAPI, 'cgi')) die('skip need sapi/cgi');