検索

phrase: max: clip:
target: order:
Results of 161 - 170 of about 418 for Foo (0.025 sec.)
以前に設定したHTTPヘッダを削除する 4165
« header_register_callback header » PHP Manual ネットワーク 関数 以前に設定したHTTPヘッダを削除す ... た。 例 例1 特定のヘッダを削除する <?php header ( "X-Foo: Bar" ); header ( "X-Bar: Baz" ); header_remove ( ... "X-Foo" ); ?> 上の例の出力は、 たとえば以下のようになりま ... 以前設定したすべてヘッダを削除する <?php header ( "X-Foo: Bar" ); header ( "X-Bar: Baz" ); header_remove () ...
https://man.plustar.jp/php/function.header-remove.html - [similar]
列挙型をシリアライズする 4165
« 値のリスト 例 » PHP Manual 列挙型(Enum) 列挙型をシリアライズする 列挙型をシリアライズする 列挙 ... これは、混乱を最小限に抑えるためです。 <?php enum Foo { case Bar ; } enum Baz : int { case Beep = 5 ; } ... print_r ( Foo :: Bar ); print_r ( Baz :: Beep ); /* 上記は、以下 ... を出力 Foo Enum ( [name] => Bar ) Baz Enum:int { [name] => Be ...
https://man.plustar.jp/php/language.enumerations.serialization.html - [similar]
既存のアイテムの前にデータを付加する 4165
« Memcached::isPristine Memcached::prependByKey » PHP Manual Memcached 既存のアイテムの前にデータ ... mcached :: OPT_COMPRESSION , false ); $m -> set ( 'foo' , 'abc' ); $m -> prepend ( 'foo' , 'def' ); var_d ... ump ( $m -> get ( 'foo' )); ?> 上の例の出力は以下となります。 string(6) " ...
https://man.plustar.jp/php/memcached.prepend.html - [similar]
Yaf_Loader クラス 4131
« Yaf_View_Simple::setScriptPath Yaf_Loader::autoload » PHP Manual Yaf Yaf_Loader クラス Yaf_Loa ... : getInstance ()-> registerLocalNameSpace (array( "Foo" , "Bar" )); } ?> オートロードの例です。 例3 クラス ... のロード class Foo_Bar_Test => // APPLICATION_PATH/library/Foo/Bar/Te ... n/Test.php 例4 名前空間つきのクラスのロード class \Foo\Bar\Dummy => // APPLICATION_PATH/library/Foo/Bar/D ... ummy.php class \FooBar\Bar\Dummy => // /global_dir/FooBar/Bar/Dummy.ph ...
https://man.plustar.jp/php/class.yaf-loader.html - [similar]
配列から現在のキーと値のペアを返して、カーソルを進める 4131
« current end » PHP Manual 配列 関数 配列から現在のキーと値のペアを返して、カーソルを進める each ... () は false を返します。 例 例1 each() の例 <?php $foo = array( "bob" , "fred" , "jussi" , "jouni" , "ego ... n" , "marliese" ); $bar = each ( $foo ); print_r ( $bar ); ?> $bar は、ここでは以下のキー ... => bob [value] => bob [0] => 0 [key] => 0 ) <?php $foo = array( "Robert" => "Bob" , "Seppo" => "Sepi" ); ... $bar = each ( $foo ); print_r ( $bar ); ?> $bar は次のようなキー/値の ...
https://man.plustar.jp/php/function.each.html - [similar]
定義されたエラー処理ルーチンにエラーメッセージを送信する 4131
« error_get_last error_reporting » PHP Manual エラー処理関数 定義されたエラー処理ルーチンにエラー ... オラクルのデータベースが使用できません!" , 0 ); } // FOO に失敗したら、管理者に email で通知する if (!( $fo ... o = allocate_new_foo ())) { error_log ( "大変です。FOO に失敗しました!" ...
https://man.plustar.jp/php/function.error-log.html - [similar]
コンストラクタ 4131
« ReflectionParameter::__clone ReflectionParameter::export » PHP Manual ReflectionParameter コン ... 例1 ReflectionParameter クラスの使用 <?php function foo ( $a , $b , $c ) { } function bar ( Exception $a , ... on abc () { } $reflect = new ReflectionFunction ( 'foo' ); echo $reflect ; foreach ( $reflect -> getParam ... ば以下のようになります。 Function [ <user> function foo ] { @@ /Users/philip/cvs/phpdoc/a 2 - 2 - Paramete ...
https://man.plustar.jp/php/reflectionparameter.construct.html - [similar]
SQLite データベースをオープンする 4131
« SQLite3::loadExtension SQLite3::openBlob » PHP Manual SQLite3 SQLite データベースをオープンする ... } } $db = new MyDB (); $db -> exec ( 'CREATE TABLE foo (bar STRING)' ); $db -> exec ( "INSERT INTO foo (b ... st')" ); $result = $db -> query ( 'SELECT bar FROM foo' ); var_dump ( $result -> fetchArray ()); ?> 関連キ ...
https://man.plustar.jp/php/sqlite3.open.html - [similar]
Rolls back a transaction in progress 4131
« Stomp Stomp::ack » PHP Manual Stomp Rolls back a transaction in progress Stomp::abort stomp_ab ... a message to the queue */ $stomp -> send ( '/queue/foo' , 'bar' , array( 'transaction' => 't1' )); /* rol ... ( $link , 't1' ); /* send a message to the queue 'foo' */ stomp_send ( $link , '/queue/foo' , 'bar' , ar ...
https://man.plustar.jp/php/stomp.abort.html - [similar]
Commits a transaction in progress 4131
« Stomp::begin Stomp::__construct » PHP Manual Stomp Commits a transaction in progress Stomp::co ... a message to the queue */ $stomp -> send ( '/queue/foo' , 'bar' , array( 'transaction' => 't1' )); /* com ... ( $link , 't1' ); /* send a message to the queue 'foo' */ stomp_send ( $link , '/queue/foo' , 'bar' , ar ...
https://man.plustar.jp/php/stomp.commit.html - [similar]