PHP
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

拡張インターフェイス> <定義済み定数
Last updated: Fri, 10 Oct 2008

view this page in

目次

基本インターフェイス

基本インターフェイスで提供する 3 つのシンプルな関数について、 ここで説明します。

例1 "counter" の基本インターフェイス

<?php
$starting_counter_value 
counter_get();
counter_bump(1);
$second_counter_value counter_get();
counter_reset();
$final_counter_value counter_get();
printf("%3d %3d %3d"$starting_counter_value$second_counter_value$final_counter_value);
?>

上の例の出力は以下となります。

  0   1   0

基本インターフェイスでは INI 設定もいくつか使用しますが、 それについては後ほど説明します。



add a note add a note User Contributed Notes
There are no user contributed notes for this page.

拡張インターフェイス> <定義済み定数
Last updated: Fri, 10 Oct 2008
 
 
show source | credits | sitemap | contact | advertising | mirror sites