WeberDev.com PHP and MySQL Code

LOG IN
BEGINNER GUIDESPHP CLASSESCODE SEARCHARTICLES SEARCHPHP FORUMSPHP MANUALPHP FUNCTIONS LISTWEB SITE TEMPLATES
Start typing to search for PHP and MySQL Code Snippets and Articles Search
Submit a code Example / Snippet Join us on FaceBook
Submit a code Example / Snippet Submit Your Code
Poker Tournaments Poker Tournaments
Poker Guide for Developers Poker Guide for Developers
Search Engine Optimization Monitor SEO Monitor
Web Site UpTime Monitor UpTime Monitor
Your Personal Examples List My Favorite Examples
Your Personal Articles List My Favorite Articles
Edit Account Info Update Your Profile
PHP Code Search
Web Development Forums
Learn MySQL Playing Trivia
PHPBB2 Templates
Web Development Resources
Web Development Content
Internet Security Software
PHPClasses
PHP Editor
PHP Jobs
Vision.To Design
Ajax Tutorials
PHP Programming Help
PHP/MySQL Programming
Webmaster Resources
Webmaster Forum
XML meta language
website builder
פרייסז - הכח לקנות עובר לידיים שלך
Texas Holdem Poker Evangelists

Go Back Add a Comment Send this example to a friend Add this Article to your personal favoritest for easy future access to your favorite Code Examples and Articles. Submit a code example Print this code example.
BACK ADD A COMMENT SEND TO A FRIEND ADD TO MY FAVORITES ADD CODE EXAMPLES PRINT
Title : PHPShell - A class implementing a shell written in PHP
Categories : PHP, PHP Classes, CLI
Víctor Román Archidona
Date : Jun 01st 2008
Grade : 5 of 5 (graded 2 times)
Viewed : 4749
File : 4800.php
Images : No Images for this code example.
Search : More code by Víctor Román Archidona
Action : Grade This Code Example
Tools : My Examples List

Submit your own code examples  Submit your own code examples 
Like this code?
Show the author your appreciation.
 

This class allows you to implement a shell in 100% PHP. It's also extensible: Write your own commands and register them using registerCommand($command, $callback) function as the example does. It checks if the command is from the system (which takes preference) or from the PHP program, executing it in a transparent way.

Finally, if you aren't using commands from the system nor internal, the code introduced is running using eval().

See the example for more information!

phpshell.class.php
<?php
/*
* PHPSH - An example about shellin', PHP and callbacks
*
* Copyright (C) 2008 Victor Roman Archidona <daijo@daijo.org>
* http://blog.daijo.org
*/
class PHPShell
{
    protected
$bufferOutput  = null;
    protected
$consolePrompt = "phpsh (%path%)> ";
    private   
$currentPath   = null;
    private   
$registered_commands = array();

   
/*
     * @fn __construct($prompt = null)
     * @param[in] string $prompt Prompt to be used
     *
     * This function is the entrypoint for the shell emulator
     */
   
public function __construct($prompt = null)
    {
       
$this->currentPath = getcwd();
       
$this->setPrompt($prompt ? $prompt : $this->consolePrompt);

       
$this->registerCommand("cd",   array($this, "_builtInCommandChdir"));
       
$this->registerCommand("exit", array($this, "_builtInCommandExit"));
    }

   
/*
     * @fn getCommand($input)
     * @brief From a given input, strips the first thing (the command)
     * @param[in] string $input Input to analyze
     * @return The first thing
     */
   
function getCommand($input)
    {
       
$input  = trim($input);
       
$space_exists = strpos($input, " ");

        if (
$space_exists)
           
$input = substr($input, 0, $space_exists);

        return
$input;
    }

   
/*
     * @fn getParameters($input)
     * @brief From a given input, strips the parameters (all except first word)
     * @param[in] string $input Input to analyze
     * @return Every word, as an array, except the first one
     */
   
function getParameters($input)
    {
       
$input  = trim($input);
       
$space_exists = strpos($input, " ");

        if (
$space_exists) {
           
$parameters = substr($input, strpos($input, " ") + 1);
           
$parameters = explode(" ", $parameters);

            return
$parameters;
        }

        return array();
    }

   
/*
     * @fn Process($input)
     * @brief Event dispatcher. The core of the class
     * @param[in] string $input Input to process
     *
     * NOTES
     * -----
     *    1. First gets the command and parameters
     *    2. If command is not null:
     *       1. If is a system command, it gets the full path and execute
     *       2. Else, if is an internal command, runs it
     *       3. Otherwise runs the input as php code using eval()
     */
   
public function Process($input)
    {
       
$command = $this->getCommand($input);
       
$params  = $this->getParameters($input);

        if (
strlen($command)) {
            if (
$this->isSystemCommand($command)) {
               
$full_cmd_path = $this->getSystemCommandFullPath($command);
               
$this->runSystemCommand($full_cmd_path, $params);
            } else if (
$this->isCommand($command)) {
               
$output = $this->runCommand($command, $params);

                if (
$output)
                   
$this->Write($output);
            } else {
                eval(
$input);
            }
        }
    }

    public function
_builtInCommandChdir($parameters)
    {
        if (
$parameters[0] != DIRECTORY_SEPARATOR)
           
$newdir = realpath($this->currentPath.DIRECTORY_SEPARATOR.$parameters);
        else
           
$newdir = $this->currentPath.DIRECTORY_SEPARATOR.$parameters;

        if (
is_dir($newdir)) {
           
chdir($newdir);
           
$this->currentPath = getcwd();
        } else {
           
$this->Write("Directory $parameters does not exists".PHP_EOL);
        }
    }

    public function
_builtInCommandExit($parameters = null)
    {
       
$exit_code = 0;

        if (
$parameters[0] && is_numeric($parameters[0]))
           
$exit_code = $parameters[0];

        exit(
$exit_code);
    }

   
/**
     * @fn promptReplace()
     * @brief Replaces the macro appearances inside current prompt
     */
   
private function promptReplace()
    {
       
$prompt = str_replace("%path%", $this->currentPath, $this->consolePrompt);
        return
$prompt;
    }

   
/**
     * @fn setPrompt($prompt)
     * @brief sets the prompt to be displayed
     * @param[in] string $prompt prompt to be setted
     *
     * NOTES
     *    1. You can use the macro %path% to display the *current* path.
     */
   
public function setPrompt($prompt)
    {
       
$this->consolePrompt = $prompt;
    }

   
/**
     * @fn getPrompt()
     * @brief Gets the current prompt
     */
   
public function getPrompt()
    {
        return
$this->consolePrompt;
    }

   
/**
     * @fn waitInput()
     * @brief Waits until the user press the enter key, showing the prompt
     */
   
public function waitInput()
    {
       
$this->Write($this->promptReplace($this->consolePrompt));
        return
$this->Read();
    }

   
/**
     * @fn registerCommand($command, $callback)
     * @brief Register a command with an internal callback
     * @input[in] string $command Command name exported
     * @input[in] string $callback Function that the command will execute
     *
     * @return true if the command is correctly registered
     *
     * NOTES:
     *    1. Callback must be a function or an array(class,method) pair
     *    2. The command must be unique (not previously registered)
     */
   
public function registerCommand($command, $callback)
    {
       
$command = strtolower($command);

        if (!
in_array($command, $this->registered_commands)) {
           
$new_command = array("command" => $command,
                         
"callback" => $callback);

            if (
is_array($callback)) {
                list(
$_class, $_method) = $callback;

                if (!
method_exists($_class, $_method)) {
                   
$this->Write("Function callback: \"$_class->$_method\" for command: \"$command\" does not exists\n");
                    return
false;
                }
            } else {
                if (!
function_exists($callback)) {
                   
$this->Write("Function callback: \"$callback\" for command: \"$command\" does not exists\n");
                    return
false;
                }
            }

           
$this->registered_commands[] = $new_command;
            return
true;
        }
    }

   
/**
     * @fn isCommand($command)
     * @brief Determines if $command was registered via registerCommand
     * @input[in] string $command Command to be checked
     *
     * @return true if $command was registered via registerCommand, false otherwise
     */
   
public function isCommand($command)
    {
        foreach (
$this->registered_commands as $current)
            if (
$current['command'] == $command)
                return
true;

        return
false;
    }

   
/**
     * @fn isSystemCommand($command)
     * @brief Determines if $command is from system or not
     * @input[in] string $command Command to be checked
     *
     * @return true if $command came from system, false otherwise
     */
   
public function isSystemCommand($command)
    {
       
$syspath = $_ENV["PATH"];

        foreach (
explode(":", $syspath) as $path)
            if (
is_executable($path.DIRECTORY_SEPARATOR.$command))
                return
true;

        return
false;
    }

   
/**
     * @fn getSystemCommandFullPath($command)
     * @brief Gets the full (real) path from a system command
     * @input[in] string $command Command to obtain
     *
     * @return The full path of the given system command
     */
   
public function getSystemCommandFullPath($command)
    {
       
$syspath = $_ENV["PATH"];

        foreach ((array)
explode(":", $syspath) as $path)
            if (
is_executable($path.DIRECTORY_SEPARATOR.$command))
                return
$path.DIRECTORY_SEPARATOR.$command;

        return
null;
    }

   
/**
     * @fn runSystemCommand($command, $parameters)
     * @brief Runs a system command with specified $parameters
     * @param[in] string $command Command to execute
     * @param[in] string $parameters Parameters passed to the command
     */
   
public function runSystemCommand($command, $parameters = null)
    {
       
$parameters = is_array($parameters) ? implode(" ", $parameters) : null;
       
passthru("$command $parameters");
    }

   
/**
     * @fn runCommand($command, $parameters)
     * @brief Runs a registered command with specified $parameters
     * @param[in] string $command Command to execute
     * @param[in] string $parameters Parameters passed to the command
     */
   
public function runCommand($command, $parameters = null)
    {
       
$callback = $this->getCommandCallback($command);


        if (
is_array($callback)) {
            list(
$_class, $_method) = $callback;
           
call_user_func_array(array($_class, $_method), $parameters);
        } else {
           
call_user_func_array($callback, $parameters);
        }
    }

   
/**
     * @fn getCommandCallback($command)
     * @brief Gets the internal callback from an internal command
     * @param[in] string $command Command to check
     */
   
public function getCommandCallback($command)
    {
        foreach (
$this->registered_commands as $current)
            if (
$current['command'] == $command)
                return
$current['callback'];

        return
null;
    }

   
/**
     * @fn Read
     * @brief Reads input from STDIN
     * @return string readed from STDIN, without \r nor \n
     */
   
public static function Read()
    {
       
$drop_chars = array("\n", "\r");

       
$buffer = fread(STDIN, 1024);
       
$buffer = str_replace($drop_chars, null, $buffer);

        return
$buffer;
    }

   
/**
     * @fn Write($text)
     * @brief Writes $text to STDOUT
     * @param[in] string $text Text to be written
     */
   
public static function Write($text)
    {
       
$len = strlen($text);
       
fwrite(STDOUT, $text, $len);
    }
}
?>



Exmaple Usage
<?php
# 1. Load the class
require_once "phpshell.class.php";

# 2. Create an instance to it

# 3. Some example commands:
$phpsh = new PHPShell("phpsh (%path%)> ");
$phpsh->registerCommand("show", "_Show");
$phpsh->registerCommand("mem_usage", "_DisplayUsedMemory");

# 4. Main loop (You can replace $phpsh->Process() for your own
# event dispatcher. See phpsh.class.php for details
for (;;) {
       
$input  = trim($phpsh->waitInput());
       
$phpsh->Process($input);
}

# These functions are examples ones:
function _Show($parameters = array())
{
       
$file = $parameters;

        if (!
is_file($file)) {
               
WriteConsole("File $file does not exists".PHP_EOL);
                return
1;
        }

        if (!
is_readable($file)) {
               
WriteConsole("File $file is not readable".PHP_EOL);
                return
1;
        }

       
WriteConsole(file_get_contents($file));
        return
0;
}

function
_DisplayUsedMemory()
{
       
$memory_used = memory_get_usage()/1024;
       
WriteConsole("Memory used: $memory_used mB".PHP_EOL);
}

function
WriteConsole($text)
{
       
$len = strlen($text);
       
fwrite(STDOUT, $text, $len);
}
?>


# EXAMPLE OUTPUT:
user@machine ~/phpsh_test $ php phpshell.example.php
phpsh (/home/user/phpsh_test)> ls
another_dir
my_file.txt
phpshell.class.php
phpshell.example.php
phpsh (/home/user/phpsh_test)> show my_file.txt
hello world
phpsh (/home/user/phpsh_test)> mem_usage
Memory used: 193.734375 mB
phpsh (/home/user/phpsh_test)> cd another_dir
phpsh (/home/user/phpsh_test/another_dir)> ls
phpsh (/home/user/phpsh_test/another_dir)> cd ..
phpsh (/home/user/phpsh_test)> exit
user@machine ~/phpsh_test $



A very basic and fast XML parser
Categories : PHP, PHP Classes, XML
Expose - PHP template engine, supports server and client-sided caching,a plugin system, multiple languages, template script language is based on PHP itself.
Categories : PHP, PHP Classes, Templates, Complete Programs
POP3 Class
Categories : PHP Classes, PHP, Email
PHPDRAW, the php wannabe Photoshop ;-)
Categories : PHP, PHP Classes, GD image library, Arrays
Create and restore backup of MySQL databases
Categories : MySQL, Databases, PHP, PHP Classes, Complete Programs
XML Menu
Categories : PHP, PHP Classes, Navigation, XML, XSL
MySQL Connection/Query Class
Categories : Databases, MySQL, PHP, PHP Classes
Simple class for accessing databases like MSSql Server, Oracle etc by Raju
Categories : PHP, MS SQL Server, Databases, PHP Classes, Oracle
Render TTF Text to PNG. Text message, font, size, rotation, padding, color, background, and transparency can all be defined via URL.
Categories : PHP, PHP Classes, Graphics
Credit Card Identification and Validation Class - The credit_card class provides methods for cleaning, validating and identifying the type of credit card numbers.
Categories : PHP, PHP Classes, Credit Cards, Ecommerce, Algorithms
SQLite PHP Database Wrapper
Categories : PHP, PHP Classes, Databases, SQLite, Beginner Guides
simple shopping cart for php3
Categories : PHP, PHP Classes, Complete Programs, Ecommerce
Class: Info on Users, Servers and the running script
Categories : PHP, Classes and Objects, User Interface, PHP Classes
Ajax PHP Tree (Left and Right) with MySQL
Categories : PHP, Databases, MySQL, AJAX, PHP Classes
YellowPages Content Grabber (PHP5 +)
Categories : PHP, PHP Classes, Regexps, Databases, MySQL