検索

phrase: max: clip:
target: order:
Results of 161 - 170 of about 1231 for function (0.019 sec.)
新機能 3413
« 下位互換性のない変更点 PHP 7.0.x で推奨されなくなる機能 » PHP Manual PHP 5.6.x から PHP 7.0.x ... ) を強化するものです。 <?php // デフォルトのモード function sumOfInts ( int ... $ints ) { return array_sum ( $ ... 型 は、引数の型宣言で使えるものと同じです。 <?php function arraysSum (array ... $arrays ): array { return arr ... ay_map (function(array $array ): int { return array_sum ( $array ); ... わりとして使えます。 <?php interface Logger { public function log ( string $msg ); } class Application { private ...
https://man.plustar.jp/php/migration70.new-features.html - [similar]
The GearmanTask class 3396
« GearmanJob::workloadSize GearmanTask::__construct » PHP Manual Gearman The GearmanTask class T ... lic data (): string public dataSize (): int public function (): string public functionName (): string public i ... aSize — Get the size of returned data GearmanTask::function — Get associated function name (deprecated) Gearma ... nTask::functionName — Get associated function name GearmanTask::is ... Task , public , Get , data , task , string , int , function , deprecated , unique ...
https://man.plustar.jp/php/class.gearmantask.html - [similar]
The LuaSandboxFunction class 3396
« LuaSandbox::wrapPhpFunction LuaSandboxFunction::call » PHP Manual LuaSandbox The LuaSandboxFunction ... ction class The LuaSandboxFunction class (PECL luasandbox >= 1.0.0) はじめに Represen ... ts a Lua function, allowing it to be called from PHP. A LuaSandboxFu ... callback from Lua, or by using LuaSandbox::wrapPhpFunction() , LuaSandbox::loadString() , or LuaSandbox::load ... Binary() . クラス概要 class LuaSandboxFunction { /* メソッド */ public call ( string ...$args ): ...
https://man.plustar.jp/php/class.luasandboxfunction.html - [similar]
SeekableIterator インターフェイス 3396
« RecursiveIterator::hasChildren SeekableIterator::seek » PHP Manual インターフェイス SeekableIt ... rator インターフェイスで必要なメソッド群 */ public function seek ( $position ) { if (!isset( $this -> array [ ... rator インターフェイスで必要なメソッド群 */ public function rewind () { $this -> position = 0 ; } public funct ... urn $this -> array [ $this -> position ]; } public function key () { return $this -> position ; } public funct ... ion next () { ++ $this -> position ; } public function valid () { return isset( $this -> array [ $this -> ...
https://man.plustar.jp/php/class.seekableiterator.html - [similar]
Application Performance Monitoring (APM) 3396
« Using the PHP Library for MongoDB (PHPLIB) Driver Architecture and Internals » PHP Manual Tuto ... \ Driver \ Monitoring \ CommandSubscriber { public function commandStarted ( \ MongoDB \ Driver \ Monitoring \ ... CommandStartedEvent $event ) { } public function commandSucceeded ( \ MongoDB \ Driver \ Monitoring ... \ CommandSucceededEvent $event ) { } public function commandFailed ( \ MongoDB \ Driver \ Monitoring \ ... takes the top level fields into account */ private function createQueryShape ( array $filter ) { return json_e ...
https://man.plustar.jp/php/mongodb.tutorial.apm.html - [similar]
Dynamically removes the given method 3362
« runkit7_method_redefine runkit7_method_rename » PHP Manual runkit7 関数 Dynamically removes th ... kit7_method_remove() example <?php class Example { function foo () { return "foo!\n" ; } function bar () { ret ... cally changes the name of the given method runkit7_function_remove() - Remove a function definition 関連キーワ ... t , Dynamically , given , removes , remove , the , function , string , 関数 , rename ...
https://man.plustar.jp/php/function.runkit7-method-remove.html - [similar]
引数を指定して関数を起動する 3362
« ReflectionFunction::invoke ReflectionFunction::isDisabled » PHP Manual ReflectionFunction 引数 ... を指定して関数を起動する ReflectionFunction::invokeArgs (PHP 5 >= 5.1.2, PHP 7, PHP 8) Reflect ... ionFunction::invokeArgs — 引数を指定して関数を起動する 説明 pu ... blic ReflectionFunction::invokeArgs ( array $args ): mixed 関数を起動して、 ... り値 起動した関数の結果を返します。 例 例1 ReflectionFunction::invokeArgs() の例 <?php function title ( $title , ...
https://man.plustar.jp/php/reflectionfunction.invokeargs.html - [similar]
はじめに 3339
« Taint インストール/設定 » PHP Manual Taint はじめに はじめに taint は、XSS コード (汚染された文 ... は、 たとえば以下のようになります。 Warning: main() [function.echo]: Attempt to echo a string that might be tain ... ted Warning: main() [function.echo]: Attempt to print a string that might be tai ... nted Warning: include() [function.include]: File path contains data that might be ta ... inted Warning: mysql_query() [function.mysql-query]: SQL statement contains data that mig ...
https://man.plustar.jp/php/intro.taint.html - [similar]
コールバック / Callable 3339
« NULL 型宣言 » PHP Manual 型 コールバック / Callable コールバック / Callable コールバックは、 c ... コールバック関数の例 <?php // コールバック関数の例 function my_callback_function () { echo 'hello world!' ; } ... // コールバックメソッドの例 class MyClass { static function myCallbackMethod () { echo 'Hello World!' ; } } // ... : 単純なコールバック call_user_func ( 'my_callback_function' ); // タイプ 2: staticメソッドのコール call_user_ ... によるstaticメソッドのコール class A { public static function who () { echo "A\n" ; } } class B extends A { publ ...
https://man.plustar.jp/php/language.types.callable.html - [similar]
ストリームラッパーとして登録するクラスの例 3339
« 例 php_user_filter » PHP Manual 例 ストリームラッパーとして登録するクラスの例 ストリームラッパ ... ss VariableStream { var $position ; var $varname ; function stream_open ( $path , $mode , $options , & $opened ... "host" ]; $this -> position = 0 ; return true ; } function stream_read ( $count ) { $ret = substr ( $GLOBALS ... is -> position += strlen ( $ret ); return $ret ; } function stream_write ( $data ) { $left = substr ( $GLOBALS ... on += strlen ( $data ); return strlen ( $data ); } function stream_tell () { return $this -> position ; } func ...
https://man.plustar.jp/php/stream.streamwrapper.example-1.html - [similar]