mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00

This deprecates passing null to non-nullable scale arguments of internal functions, with the eventual goal of making the behavior consistent with userland functions, where null is never accepted for non-nullable arguments. This change is expected to cause quite a lot of fallout. In most cases, calling code should be adjusted to avoid passing null. In some cases, PHP should be adjusted to make some function arguments nullable. I have already fixed a number of functions before landing this, but feel free to file a bug if you encounter a function that doesn't accept null, but probably should. (The rule of thumb for this to be applicable is that the function must have special behavior for 0 or "", which is distinct from the natural behavior of the parameter.) RFC: https://wiki.php.net/rfc/deprecate_null_to_scalar_internal_arg Closes GH-6475.
46 lines
1 KiB
PHP
46 lines
1 KiB
PHP
--TEST--
|
|
Test flock() function: Basic functionality
|
|
--FILE--
|
|
<?php
|
|
/*
|
|
Description: PHP supports a portable way of locking complete files
|
|
in an advisory way
|
|
*/
|
|
|
|
echo "*** Testing flock() fun with file and dir ***\n";
|
|
|
|
$lock_file = preg_replace("~\.phpt?$~", '', __FILE__);
|
|
|
|
$file_handle = fopen($lock_file, "w");
|
|
var_dump(flock($file_handle, LOCK_SH|LOCK_NB));
|
|
var_dump(flock($file_handle, LOCK_UN));
|
|
var_dump(flock($file_handle, LOCK_EX));
|
|
var_dump(flock($file_handle, LOCK_UN));
|
|
fclose($file_handle);
|
|
unlink($lock_file);
|
|
|
|
$lock_dir = sprintf("%s.dir", preg_replace("~\.phpt?$~", '', __FILE__));
|
|
|
|
mkdir($lock_dir);
|
|
$dir_handle = opendir($lock_dir);
|
|
var_dump(flock($dir_handle, LOCK_SH|LOCK_NB));
|
|
var_dump(flock($dir_handle, LOCK_UN));
|
|
var_dump(flock($dir_handle, LOCK_EX));
|
|
var_dump(flock($dir_handle, LOCK_UN));
|
|
closedir($dir_handle);
|
|
rmdir($lock_dir);
|
|
|
|
echo "\n*** Done ***\n";
|
|
?>
|
|
--EXPECT--
|
|
*** Testing flock() fun with file and dir ***
|
|
bool(true)
|
|
bool(true)
|
|
bool(true)
|
|
bool(true)
|
|
bool(false)
|
|
bool(false)
|
|
bool(false)
|
|
bool(false)
|
|
|
|
*** Done ***
|