Web студия "GrandView"
  Главная   Написать Контакты
   
   
О проекте
Руководство php
 

readline_write_history

(PHP 4, PHP 5)

readline_write_history -- Writes the history

Description

bool readline_write_history ( [string filename] )

This function writes the command history to a file.



add a note add a note User Contributed Notes
readline_write_history
jonathan dot gotti at free dot fr
27-Apr-2006 04:52
readline_write_history() doesn't take care of the $_SERVER['HISTSIZE'] value, here's an example on how to handle an history file in your apps taking care of user preferences regarding history size.

at the begining of your script:
<?php
$history_file
= $_SERVER['HOME'].'/.PHPinteractive_history';
# read history from previous session
if(is_file($history_file))
 
readline_read_history($history_file);
....
# your application's code
....
# put this at the end of yur script to save history and take care of $_SERVER['HISTSIZE']
if( readline_write_history($history_file) ){
 
# clean history if too long
 
$hist = readline_list_history();
  if( (
$histsize = count($hist)) > $_SERVER['HISTSIZE'] ){
   
$hist = array_slice($hist, $histsize - $_SERVER['HISTSIZE']);
   
# in php5 you can replaces thoose line with a file_puts_content()
   
if( $fhist = fopen($history_file,'w') ){
     
fwrite($fhist,implode("\n",$hist));
     
fclose($fhist);
    }
  }
}
?>

readline> <readline_redisplay
Last updated: Fri, 26 Jan 2007
 
 
Новости
11 июля 2007
Сайт запущен
© 2007 info@grandviewstudio.com

Deprecated: Function set_magic_quotes_runtime() is deprecated in /home/sites/grandviewstudiocom/www/65f67d67a94ad980786580ae69e11c07/sape.php on line 324

Deprecated: Function set_magic_quotes_runtime() is deprecated in /home/sites/grandviewstudiocom/www/65f67d67a94ad980786580ae69e11c07/sape.php on line 330
Z058440144362 Z348613067571