1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Merge branch 'PHP-8.5'

* PHP-8.5:
  Update zlib test to use separate file for flock()
This commit is contained in:
Niels Dossche
2025-11-01 09:30:59 +01:00
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@@ -4,7 +4,7 @@ Test function flock on a zlib stream
zlib
--FILE--
<?php
$f = __DIR__."/data/test.txt.gz";
$f = __DIR__."/data/zlib_flock.txt.gz";
$h = gzopen($f,'r');
var_dump(flock($h, LOCK_EX));
gzclose($h);