検索

phrase: max: clip:
target: order:
Results of 161 - 170 of about 247 for bar (0.064 sec.)
外部から来る変数 4459
« 可変変数 定数 » PHP Manual 変数 外部から来る変数 外部から来る変数 HTML フォーム (GET と POST) ... 字は黙って無視されます。 たとえば、 <input name="foo[bar]baz"> は $_REQUEST['foo']['bar'] になります。 IMAG ... esting 1' , time ()+ 3600 ); setcookie ( "MyCookie[bar]" , 'Testing 2' , time ()+ 3600 ); ?> 上記スクリプ ...
https://man.plustar.jp/php/language.variables.external.html - [similar]
ひとつまたは複数の配列をマージする 4409
« array_merge_recursive array_multisort » PHP Manual 配列 関数 ひとつまたは複数の配列をマージする ... う例 <?php $beginning = 'foo' ; $end = array( 1 => 'bar' ); $result = array_merge ((array) $beginning , (a ... 例の出力は以下となります。 Array ( [0] => foo [1] => bar ) 参考 array_merge_recursive() - 一つ以上の配列を再 ...
https://man.plustar.jp/php/function.array-merge.html - [similar]
SNMP オブジェクトの値を設定する 4409
« snmp2_real_walk snmp2_walk » PHP Manual SNMP 関数 SNMP オブジェクトの値を設定する snmp2_set (P ... php snmp2_set ( "localhost" , "public" , 'FOO-MIB::bar.42' , 'b' , '0 1 2 3 4' ); // あるいは snmp2_set ( ... "localhost" , "public" , 'FOO-MIB::bar.42' , 'x' , 'F0' ); ?> 参考 snmp2_get() - SNMP オブ ...
https://man.plustar.jp/php/function.snmp2-set.html - [similar]
SNMP オブジェクトの値を設定する 4409
« snmprealwalk snmpwalk » PHP Manual SNMP 関数 SNMP オブジェクトの値を設定する snmpset (PHP 4, P ... <?php snmpset ( "localhost" , "public" , 'FOO-MIB::bar.42' , 'b' , '0 1 2 3 4' ); // あるいは snmpset ( " ... localhost" , "public" , 'FOO-MIB::bar.42' , 'x' , 'F0' ); ?> 参考 snmpget() - SNMP オブジ ...
https://man.plustar.jp/php/function.snmpset.html - [similar]
変数のスコープ 4409
« 定義済みの変数 可変変数 » PHP Manual 変数 変数のスコープ 変数のスコープ 変数のスコープは、その ... ter = 0 ; $counter ++; return $counter ; } } class Bar extends Foo {} var_dump ( Foo :: counter ()); // i ... ar_dump ( Foo :: counter ()); // int(2) var_dump ( Bar :: counter ()); // int(3), PHP 8.1.0 より前のバージ ... ョンでは int(1) var_dump ( Bar :: counter ()); // int(4), PHP 8.1.0 より前のバージ ...
https://man.plustar.jp/php/language.variables.scope.html - [similar]
Yaf_Route_Rewrite のコンストラクタ 4409
« Yaf_Route_Rewrite::assemble Yaf_Route_Rewrite::route » PHP Manual Yaf_Route_Rewrite Yaf_Route_ ... ります。 /* http://yourdomain.com/product/foo/22/foo/bar * の場合はこのような結果になります */ array( "cont ... ます */ array( "name" => "foo", "id" => 22, "foo" => bar ) 例2 Yaf_Route_Rewrite() の例 <?php /** * Add a r ...
https://man.plustar.jp/php/yaf-route-rewrite.construct.html - [similar]
Progress Control 4369
« UI\Controls\Slider::setValue UI\Controls\Progress::getValue » PHP Manual UI Progress Control P ... はじめに A Progress control is a familiar Progress bar: It represents progress as a percentage, with a po ...
https://man.plustar.jp/php/class.ui-controls-progress.html - [similar]
基底ノード型を作成する際に使用する拡張クラスを登録する 4369
« DOMDocument::normalizeDocument DOMDocument::relaxNGValidate » PHP Manual DOMDocument 基底ノード ... ent ( 'child' ); $child -> setAttribute ( 'foo' , 'bar' ); echo $doc -> saveXML (); ?> 上の例の出力は以下 ... となります。 <?xml version="1.0"?> <root><child foo="bar"/></root> 例2 カスタムクラス形式での要素の取得 <?p ...
https://man.plustar.jp/php/domdocument.registernodeclass.html - [similar]
配列を生成する 4369
« array_walk arsort » PHP Manual 配列 関数 配列を生成する array (PHP 4, PHP 5, PHP 7, PHP 8) arr ... トで囲まれた配列にアクセスする <?php $foo = array( 'bar' => 'baz' ); echo "Hello { $foo [ 'bar' ]} !" ; // ...
https://man.plustar.jp/php/function.array.html - [similar]
配列と同様の形式で、複数の変数への代入を行う 4369
« ksort natcasesort » PHP Manual 配列 関数 配列と同様の形式で、複数の変数への代入を行う list (PH ... しい!\n" ; // list() は文字列では動作しません list( $bar ) = "abcde" ; var_dump ( $bar ); // NULL ?> 例2 li ...
https://man.plustar.jp/php/function.list.html - [similar]