• 首页
  • vue
  • TypeScript
  • JavaScript
  • scss
  • css3
  • html5
  • php
  • MySQL
  • redis
  • jQuery
  • apc_bin_dump()

    (PECL apc >= 3.1.4)

    获取给定文件和变量的二进制文件转储。

    说明

    apc_bin_dump([array $files= NULL[,array $user_vars= NULL]]): string

    从 APC 缓存中返回给定文件和用户变量的二进制打印。一个NULL给文件或者用户变量符号表示每个条目的打印,而 array()则不会转储任何内容。

    参数

    $files

    文件,在NULL传入array()时传递每个条目的转储都不会转储任何内容。

    $user_vars

    用户变量,在NULL传入array()时传递每个条目的转储信号都不会转储任何内容。

    返回值

    FALSE如果 APC 未启用,或者NULL遇到未知错误,则返回 APC 缓存中给定文件和用户变量的二进制转储。

    参见

    These items aren't clear to me from the documentation.
    In order to store file opcodes (the first parameter), you MUST have apc.stat set to 0, and filenames passed into the first parameter MUST be absolute (full) paths. Any other configuration will generate a warning and will not dump the files. Also, apc.stat cannot be changed at runtime (so you can't do ini_set('apc.stat', 0) prior to executing the apc_bin_dump* functions), it must be set in php.ini (or otherwise defined prior to execution of your script; for example for PHP CLI you can do "php -d apc.stat=0"). 
    The files passed to apc_bin_dump*() must already exist in the opcode cache; you should do apc_compile_file() on any filenames you're not certain will be in the cache already (best practice is to do it for all files to be certain they are up to date since the mandatory apc.stat=0 disables checking whether the files are up to date, but apc_compile_file() will always refresh the file's cache).
    When doing apc_bin_load*(), you do not have to have apc.stat=0, but failing to have this value may overwrite your restored value with a newly created opcode from the file on the disk if anything attempts to include that file again (even other scripts at a later time).
    If you're intending to just store variables (not file opcodes), you don't have to have apc.stat=0, but you will still get a warning about apc.stat not being the correct value, even if the first parameter is an empty array() or null.
    The format for the $user_vars parameter is array('varname1',..,'varnameN'). The values which are stored come out of the APC data store (not the local variable scope, nor can these be values which are passed into this function). You must first apc_store() any value you wish to persist with these functions. Likewise, these variables are restored to the APC data store by apc_bin_load*() rather than the local scope or as a return value in some form. 
    So if your intent is to store a local variable for later use, first apc_store('varname', $varname) (assuming you have no collisions with other scopes using the same 'varname') before calling apc_bin_dump*(). When restoring, you'll need to do $varname = apc_fetch('varname') after calling apc_bin_load*()

    上篇:apc_add()

    下篇:apc_bin_dumpfile()