Results of 1 - 10 of about 418 for Foo (0.003 sec.)
- 名前空間の使用法: 基本編 9132
- « 同一ファイル内での複数の名前空間の定義 名前空間と動的言語機能 » PHP Manual 名前空間 名前空間の
...
ァイルにアクセスするには次の 3 つの方法があります。 foo.txt のような相対ファイル名を使う。これは currentdi ...
rectory/foo.txt と解釈されます。ここで、 currentdirectory は現 ...
を表します。したがって、カレントディレクトリが /home/foo であった場合はこれは /home/foo/foo.txt となります。 ...
subdirectory/foo.txt のような相対パス名を使う。これは currentdirect ...
-
https://man.plustar.jp/php/language.namespaces.basics.html
- [similar]
- Deserialization from BSON 8119
- « Serialization to BSON Security » PHP Manual Persisting Data Deserialization from BSON Deserial
...
uld deserialize to the same PHP value (e.g. {"0": "foo"} and ["foo"] ) and make it impossible to infer th ...
zed = true ; } /* typemap: [] (all defaults) */ { "foo": "yes", "bar" : false } -> stdClass { $foo => 'ye ...
s', $bar => false } { "foo": "no", "array" : [ 5, 6 ] } -> stdClass { $foo => ...
'no', $array => [ 5, 6 ] } { "foo": "no", "obj" : { "embedded" : 3.14 } } -> stdClas ...
-
https://man.plustar.jp/php/mongodb.persistence.deserialization.html
- [similar]
- FAQ: 名前空間について知っておくべきこと 7569
- « 名前解決のルール 列挙型(Enum) » PHP Manual 名前空間 FAQ: 名前空間について知っておくべきこと FA
...
前空間内からの内部クラスへのアクセス <?php namespace foo ; $a = new \ stdClass ; function test (\ ArrayObje ...
クラス、関数あるいは定数へのアクセス <?php namespace foo ; class MyClass {} // 現在の名前空間のクラスを引数 ...
引数の型として使うもうひとつの方法 function test (\ foo \ MyClass $parameter_type_example = null ) {} // 現 ...
eption となります。 例5 完全修飾名 <?php namespace foo ; $a = new \ my \ name (); // "my\name" クラスのイ ...
-
https://man.plustar.jp/php/language.namespaces.faq.html
- [similar]
- static キーワード 7476
- « スコープ定義演算子 (::) クラスの抽象化 » PHP Manual クラスとオブジェクト static キーワード sta
...
生していました。 例1 static メソッドの例 <?php class Foo { public static function aStaticMethod () { // ... ...
} } Foo :: aStaticMethod (); $classname = 'Foo' ; $classna ...
はできません。 例2 static プロパティの例 <?php class Foo { public static $my_static = 'foo' ; public functi ...
return self :: $my_static ; } } class Bar extends Foo { public function fooStatic () { return parent :: ...
-
https://man.plustar.jp/php/language.oop5.static.html
- [similar]
- 名前解決のルール 7384
- « 名前空間の使用法: グローバル関数/定数への移行 FAQ: 名前空間について知っておくべきこと » PHP Ma
...
修飾名 これは名前空間区切り文字を含まない識別子で、 Foo のようなものです。 修飾名 これは名前空間区切り文字 ...
を含む識別子で、 Foo\Bar のようなものです。 完全修飾名 これは名前空間区 ...
別子のうち先頭が名前空間区切り文字で始まるもので、 \Foo\Bar のようなものです。名前空間 \Foo も完全修飾名で ...
す。 相対名 namespace\Foo\Bar のように、 namespace で始まる識別子です。 名前 ...
-
https://man.plustar.jp/php/language.namespaces.rules.html
- [similar]
- Serialization to BSON 7384
- « Persisting Data Deserialization from BSON » PHP Manual Persisting Data Serialization to BSON S
...
8, 3 => 12 ] => { "0" : 1, "2" : 8, "3" : 12 } [ "foo" => 42 ] => { "foo" : 42 } [ 1 => 9, 0 => 10 ] => ...
directly. Examples <?php class stdClass { public $foo = 42 ; } // => { "foo" : 42 } class MyClass { publ ...
ic $foo = 42 ; protected $prot = "wine" ; private $fpr = " ...
cheese" ; } // => { "foo" : 42 } class AnotherClass1 implements MongoDB \ B ...
-
https://man.plustar.jp/php/mongodb.persistence.serialization.html
- [similar]
- 可変関数 7291
- « 戻り値 内部(ビルトイン)関数 » PHP Manual 関数 可変関数 可変関数 PHP は可変関数(variable func
...
使う必要があります。 例1 可変関数の例 <?php function foo () { echo "In foo()<br />\n" ; } function bar ( $a ...
ion echoit ( $string ) { echo $string ; } $func = 'foo' ; $func (); // This calls foo() $func = 'bar' ; $ ...
ることもできます。 例2 可変メソッドの例 <?php class Foo { function Variable () { $name = 'Bar' ; $this -> ...
コール } function Bar () { echo "This is Bar" ; } } $foo = new Foo (); $funcname = "Variable" ; $foo -> $fu ...
-
https://man.plustar.jp/php/functions.variable-functions.html
- [similar]
- 型の相互変換 7079
- « 型宣言 変数 » PHP Manual 型 型の相互変換 型の相互変換 PHP は、変数定義時に明示的な型定義を必要
...
オペランドがどのように評価されるかだけです。 <?php $foo = "1" ; // $foo は文字列 (ASCII 49) です $foo *= 2 ...
; // ここでは、$foo は整数 (2) です $foo = $foo * 1.3 ; // ここでは、$ ...
foo はfloat (2.6) です $foo = 5 * "10 Little Piggies" ; // $foo は integer (50 ...
) です $foo = 5 * "10 Small Pigs" ; // $foo は integer (50) で ...
-
https://man.plustar.jp/php/language.types.type-juggling.html
- [similar]
- クラスの基礎 6894
- « はじめに プロパティ » PHP Manual クラスとオブジェクト クラスの基礎 クラスの基礎 class 各クラス
...
た。 例2 $this 疑似変数の例 <?php class A { function foo () { if (isset( $this )) { echo '$this is defined ...
fined.\n" ; } } } class B { function bar () { A :: foo (); } } $a = new A (); $a -> foo (); A :: foo (); ...
is is defined (A) Deprecated: Non-static method A::foo() should not be called statically in %s on line 27 ...
s is not defined. Deprecated: Non-static method A::foo() should not be called statically in %s on line 20 ...
-
https://man.plustar.jp/php/language.oop5.basic.html
- [similar]
- クラス定数を取得する 6801
- « ReflectionClass::getReflectionConstant ReflectionClass::getShortName » PHP Manual ReflectionCl
...
onClass::getReflectionConstants() の例 <?php class Foo { public const FOO = 1 ; protected const BAR = 2 ; ...
private const BAZ = 3 ; } $foo = new Foo (); $reflect = new ReflectionClass ( $fo ...
?> 上の例の出力は、 たとえば以下のようになります。 FOO BAR BAZ array(3) { [0]=> object(ReflectionClassCon ...
stant)#3 (2) { ["name"]=> string(3) "FOO" ["class"]=> string(3) "Foo" } [1]=> object(Reflec ...
-
https://man.plustar.jp/php/reflectionclass.getreflectionconstants.html
- [similar]