Clear screen

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Georg Weiler

    #1

    Clear screen

    Hi,

    I'm using PHP on my Linux box on the command line.

    It need to clear the screen, as I would do with the 'clear' command on
    the bash. Is there something equivalent in PHP available?

    regards,
    georg

  • Alan Little

    #2
    Re: Clear screen

    Carved in mystic runes upon the very living rock, the last words of Georg
    Weiler of comp.lang.php make plain:
    [color=blue]
    > I'm using PHP on my Linux box on the command line.
    >
    > It need to clear the screen, as I would do with the 'clear' command on
    > the bash. Is there something equivalent in PHP available?[/color]

    ereg(":li#([0-9]+):", $TERMCAP, $regs);
    $lines = $regs[1];
    echo str_repeat("\n" , $lines);

    Or, for PHP3:

    while ($lines--) echo "\n";

    --
    Alan Little
    Phorm PHP Form Processor

    Comment

    • StF

      #3
      Re: Clear screen

      Why don't you try exec("clear") ???
      read more of exec in php manual

      greetz Seymour
      "Georg Weiler" <georg116@gmx.a t> wrote in message
      news:3f866788$0 $18038$3b214f66 @usenet.univie. ac.at...[color=blue]
      > Hi,
      >
      > I'm using PHP on my Linux box on the command line.
      >
      > It need to clear the screen, as I would do with the 'clear' command on
      > the bash. Is there something equivalent in PHP available?
      >
      > regards,
      > georg
      >[/color]


      Comment

      Working...