(PECL apc >= 3.0.0)
apc_store — Cache a variable in the data store
����һ��������APC��
Note: ��PHP�������Ļ��Ʋ�ͬ��ʹ��apc_store() �洢�ı��� �ڲ�ͬ������֮��һֱ�־ô��ڣ�ֱ���ӻ���ϵͳ���Ƴ�����
key
�洢�������ʹ�õ�����.key
��Ψһ�ģ�����
����ֵʹ��ͬһ�� key
��ԭ���Ľ����µ�ֵ���ǡ�
var
The variable to store
ttl
����ʱ��;�ڻ����д洢var
��ttl
��,
��ttl
���ȥ��,�洢�ı�������ӻ����в���(����һ������ʱ),
���û������ttl
(����ttl
��0),
������һֱ�����ֶ��Ƴ�Ϊֹ,����֮�ⲻ�ڻ����еĿ���ԭ���ǣ�
����ϵͳʹ��clear������restart�ȡ�
values
Names in key, variables in value.
�ɹ�ʱ���� TRUE
�� ������ʧ��ʱ���� FALSE
��
Second syntax returns array with error keys.
Example #1 apc_store() ����
<?php
$bar = 'BAR';
apc_store('foo', $bar);
var_dump(apc_fetch('foo'));
?>
�������̻������
string(3) "BAR"