検索

phrase: max: clip:
target: order:
Results of 271 - 280 of about 418 for Foo (0.066 sec.)
変数の型名をデバッグしやすい形で取得する 3768
« floatval get_defined_vars » PHP Manual 変数操作 関数 変数の型名をデバッグしやすい形で取得する ... ジェクト 名前空間も含めた、クラスの完全修飾名。 例: Foo\Bar - 無名クラスのオブジェクト "class@anonymous" 無 ... ug_type ( 0.1 ) . PHP_EOL ; echo get_debug_type ( "foo" ) . PHP_EOL ; echo get_debug_type ([]) . PHP_EOL ...
https://man.plustar.jp/php/function.get-debug-type.html - [similar]
指定されたパスのファイルとディレクトリのリストを取得する 3768
« rewinddir Fileinfo » PHP Manual ディレクトリ 関数 指定されたパスのファイルとディレクトリのリス ... 。 Array ( [0] => . [1] => .. [2] => bar.php [3] => foo.txt [4] => somedir ) Array ( [0] => somedir [1] => ... foo.txt [2] => bar.php [3] => .. [4] => . ) 注意 ヒント ...
https://man.plustar.jp/php/function.scandir.html - [similar]
指定した関数を __autoload() の実装として登録する 3768
« spl_autoload_functions spl_autoload_unregister » PHP Manual SPL 関数 指定した関数を __autoload ... egister() でクラスをロードしない例 <?php namespace Foobar ; class Foo { static public function test ( $na ... ]' ; } } spl_autoload_register ( __NAMESPACE__ . '\Foo::test' ); new InexistentClass ; ?> 上の例の出力は、 ... たとえば以下のようになります。 [[Foobar\InexistentClass]] Fatal error: Class 'Foobar\In ...
https://man.plustar.jp/php/function.spl-autoload-register.html - [similar]
Add a task to be run in parallel 3768
« GearmanClient::addServers GearmanClient::addTaskBackground » PHP Manual GearmanClient Add a ta ... の例の出力は、 たとえば以下のようになります。 t2: H.foo:21, Hello World! t1: H:foo:22, !dlroW olleH 参考 G ...
https://man.plustar.jp/php/gearmanclient.addtask.html - [similar]
再試行無しのサブパターン 3768
« 言明 条件付きサブパターン » PHP Manual PCRE 正規表現構文 再試行無しのサブパターン 再試行無しの ... ることが 有用な場合があります。 例えば、パターン \d+foo を "123456bar" という対象文字列に適用した場合を考え ... 。 \d+ が 6 桁の数字すべてにマッチしますが、その後 "foo" とのマッチが失敗します。通常のマッチング処理の動作 ... されないよう指定することができます。つまり、最初に "foo" とのマッチに失敗した時点で、ただちにマッチングを取 ...
https://man.plustar.jp/php/regexp.reference.onlyonce.html - [similar]
ストリームラッパーとして登録するクラスの例 3768
« 例 php_user_filter » PHP Manual 例 ストリームラッパーとして登録するクラスの例 ストリームラッパ ... 。 以下で実装した var:// プロトコルでは、URL "var://foo" で $GLOBALS["foo"] への読み書きを行います。 例1 グ ...
https://man.plustar.jp/php/stream.streamwrapper.example-1.html - [similar]
新しい要素ノードを作成する 3734
« DOMDocument::createDocumentFragment DOMDocument::createElementNS » PHP Manual DOMDocument 新し ... ' , 'utf-8' ); $element = $dom -> createElement ( 'foo' , 'me & you' ); $dom -> appendChild ( $element ); ... on line 4 <?xml version="1.0" encoding="utf-8"?> <foo/> 注意 注意 : value は エスケープされません 。 エス ...
https://man.plustar.jp/php/domdocument.createelement.html - [similar]
引数のリストから要素をひとつ返す 3734
« forward_static_call func_get_args » PHP Manual 関数処理 関数 引数のリストから要素をひとつ返す ... 生します。 例 例1 func_get_arg() の例 <?php function foo () { $numargs = func_num_args (); echo "引数の数は ... の引数は " . func_get_arg ( 1 ) . " です。\n" ; } } foo ( 1 , 2 , 3 ); ?> 上の例の出力は以下となります。 引 ...
https://man.plustar.jp/php/function.func-get-arg.html - [similar]
新機能 3734
« 下位互換性のない変更点 PHP 7.0.x で推奨されなくなる機能 » PHP Manual PHP 5.6.x から PHP 7.0.x ... のオブジェクトに変換します $data = unserialize ( $foo , [ "allowed_classes" => false ]); // MyClassとMyC ... のオブジェクトに変換します $data = unserialize ( $foo , [ "allowed_classes" => [ "MyClass" , "MyClass2" ... ジェクトをそのまま復元します $data = unserialize ( $foo , [ "allowed_classes" => true ]); IntlChar ICU のさ ... のメンバーにアクセスできるようになりました。 (clone $foo)->bar() のようにできるということです。 関連キーワー ...
https://man.plustar.jp/php/migration70.new-features.html - [similar]
新機能 3734
« PHP 7.2.x から PHP 7.3.x への移行 新しく追加された関数 » PHP Manual PHP 7.2.x から PHP 7.3.x へ ... ( '\s*(?<word>\w+)\s*' , "_\k<word>_\k'word'_" , ' foo ' ); // => "_foo_foo_" ?> \k<> and \k'' 記法は、数 ...
https://man.plustar.jp/php/migration73.new-features.html - [similar]