mirror of
https://github.com/php/php-src.git
synced 2025-01-08 20:17:28 +08:00
18 lines
207 B
PHP
18 lines
207 B
PHP
--TEST--
|
|
Testing stream_is_local()
|
|
--FILE--
|
|
<?php
|
|
|
|
$a = 1;
|
|
$b = $a;
|
|
var_dump(stream_is_local($b));
|
|
var_dump($b);
|
|
|
|
var_dump(stream_is_local(fopen(__FILE__, 'r')));
|
|
|
|
?>
|
|
--EXPECT--
|
|
bool(true)
|
|
int(1)
|
|
bool(true)
|