Related Links : Search Engine Optimization | | Search Engine Marketing | Online Marketing | Freelance Programmer| SEO Thailand | SEO Expert | SEO services | PHP Programmer Thailand | SEO Tutorial | What is SEO |

  Home Our SEO Services SEO Expert Consultant Php Programmer Scripts| Email : sachin {at} jainsachin {dot} com

PHP | Forks the currently running process | Manual | Tutorial | Help

SEO Services



Website Programming in PHP / MYSQL



Friends


    Forks the currently running process

    pcntl_fork

    (PHP 4 >= 4.0.7, PHP 5)

    pcntl_fork — Forks the currently running process

    Description

    int pcntl_fork ( void )

    The pcntl_fork() function creates a child process that differs from the parent process only in its PID and PPID. Please see your system's fork(2) man page for specific details as to how fork works on your system.

    Return Values

    On success, the PID of the child process is returned in the parent's thread of execution, and a 0 is returned in the child's thread of execution. On failure, a -1 will be returned in the parent's context, no child process will be created, and a PHP error is raised.

    Examples

    Example #1 pcntl_fork() example

    <?php

    $pid 
    pcntl_fork();
    if (
    $pid == -1) {
         die(
    'could not fork');
    } else if (
    $pid) {
         
    // we are the parent
         
    pcntl_wait($status); //Protect against Zombie children
    } else {
         
    // we are the child
    }

    ?>


    SEO Tutorial / Articles





    Php / Mysql Tutorial



    Articles



      Portfolio


      SEO by Jainsachin