File: 011.phpt

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 (15 lines) | stat: -rw-r--r-- 274 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--TEST--
compress level constants
--SKIPIF--
--FILE--
<?php
echo 'Min: ', ZSTD_COMPRESS_LEVEL_MIN, PHP_EOL;
echo 'Max: ', ZSTD_COMPRESS_LEVEL_MAX, PHP_EOL;
echo 'Default: ', ZSTD_COMPRESS_LEVEL_DEFAULT, PHP_EOL;
?>
===DONE===
--EXPECT--
Min: 1
Max: 22
Default: 3
===DONE===