PHP Shared memory segment sample sharing _php instances

Source: Internet
Author: User
Tags phpinfo
Need to install extension SHMOP
Locate the PHP installation source files directory
Copy CodeThe code is as follows:
# CD/USR/LOCAL/PHP-5.4.0/EXT/SHMOP
#/usr/local/php/bin/phpize
#./configure--with-php-config=/usr/local/php/bin/php-config
# Make && make install

Compile and install succeeded

Copy the Code code as follows:
# cd/usr/local/php/lib/php/extensions/no-debug-non-zts-20100525/
One more shmop.so.
Increase shmop.so in php.ini
Extension=shmop.so
; Module Settings;
Phpinfo () output


Write Data

Copy the Code code as follows:
$shmid = Shmop_open (864, ' C ', 0755, 1024);
Shmop_write ($shmid, "Hello world!", 0);
Phpinfo ();
?>

Read data

Copy the Code code as follows:
$shmid = Shmop_open (864, ' C ', 0755, 1024);
Shmop_write ($shmid, "Hello world!", 0);
Echo shmop_read ($shmid, 0, 11);
?>

  • Related Article

    Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.