summaryrefslogtreecommitdiff
path: root/ext/readline/tests/readline_write_history_001.phpt
blob: b03941300cf0b8cee9086cf30ae8f25c26022eba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
--TEST--
readline_write_history(): Basic test
--FILE--
<?php

$name = tempnam('/tmp', 'readline.tmp');

readline_add_history('foo');
readline_add_history('');
readline_add_history(1);
readline_add_history(NULL);
readline_write_history($name);

var_dump(file_get_contents($name));

unlink($name);

?>
--EXPECT--
string(8) "foo

1

"