Results of 1 - 10 of about 168 for some (0.004 sec.)
- Tunes some RRD database file header options 11069
- « rrd_restore rrd_update » PHP Manual RRD 関数 Tunes some RRD database file header options rrd_t
...
une (PECL rrd >= 0.9.0) rrd_tune — Tunes some RRD database file header options 説明 rrd_tune ( s ...
tring $filename , array $options ): bool Change some options in the RRD dabase header file. E.g. rename ...
。 関連キーワード: RRD , file , database , header , some , Tunes , rrd , options , filename , パラメータ ...
-
https://man.plustar.jp/php/function.rrd-tune.html
- [similar]
- Send all calls 10696
- « Yar_Concurrent_Client::call Yar_Concurrent_Client::reset » PHP Manual Yar_Concurrent_Client Se
...
_Concurrent_Client :: call ( "http://host/api/" , "some_method" , array( "parameters" ), "callback" ); Yar ...
_Concurrent_Client :: call ( "http://host/api/" , "some_method" , array( "parameters" )); // if the callba ...
_Concurrent_Client :: call ( "http://host/api/" , "some_method" , array( "parameters" ), "callback" , NULL ...
_Concurrent_Client :: call ( "http://host/api/" , "some_method" , array( "parameters" ), "callback" , NULL ...
-
https://man.plustar.jp/php/yar-concurrent-client.loop.html
- [similar]
- 名前空間の使用法: エイリアス/インポート 10605
- « namespace キーワードおよび __NAMESPACE__ 定数 グローバル空間 » PHP Manual 名前空間 名前空間の使
...
をひとつの use にまとめることができます。 <?php use some \namespace\ ClassA ; use some \namespace\ ClassB ; ...
use some \namespace\ ClassC as C ; use function some \names ...
pace\ fn_a ; use function some \namespace\ fn_b ; use function some \namespace\ f ...
n_c ; use const some \namespace\ ConstA ; use const some \namespace\ Co ...
-
https://man.plustar.jp/php/language.namespaces.importing.html
- [similar]
- notification コンテキストパラメータ用のコールバック関数 10515
- « stream_isatty stream_register_wrapper » PHP Manual ストリーム 関数 notification コンテキストパ
...
; break; case STREAM_NOTIFY_PROGRESS : echo "Made some progress, downloaded " , $bytes_transferred , " so ...
Found the mime-type: text/html;charset=utf-8 Made some progress, downloaded 0 so far Made some progress, ...
downloaded 0 so far Made some progress, downloaded 0 so far Made some progress, ...
downloaded 1440 so far Made some progress, downloaded 2880 so far Made some progres ...
-
https://man.plustar.jp/php/function.stream-notification-callback.html
- [similar]
- 文字列 9190
- « 浮動小数点数 数値形式の文字列 » PHP Manual 型 文字列 文字列 string は、文字が連結されたものです
...
; echo <<<EOT My name is " $name ". I am printing some $foo -> foo . Now, I am printing some { $foo -> ba ...
以下となります。 My name is "MyName". I am printing some Foo. Now, I am printing some Bar2. This should pri ...
; echo <<<'EOT' My name is "$name". I am printing some $foo->foo. Now, I am printing some {$foo->bar[1]}. ...
は以下となります。 My name is "$name". I am printing some $foo->foo. Now, I am printing some {$foo->bar[1]}. ...
-
https://man.plustar.jp/php/language.types.string.html
- [similar]
- 新機能 9190
- « 下位互換性のない変更点 PHP 7.0.x で推奨されなくなる機能 » PHP Manual PHP 5.6.x から PHP 7.0.x
...
ertionError {} assert ( false , new CustomError ( 'Some error message' )); ?> 上の例の出力は以下となります ...
。 Fatal error: Uncaught CustomError: Some error message 開発環境および運用環境での設定方法な ...
になりました。 <?php // 以前のバージョンのコード use some \namespace\ ClassA ; use some \namespace\ ClassB ; ...
use some \namespace\ ClassC as C ; use function some \names ...
-
https://man.plustar.jp/php/migration70.new-features.html
- [similar]
- SoapClient のコンストラクタ 8534
- « SoapClient::__call SoapClient::__doRequest » PHP Manual SoapClient SoapClient のコンストラクタ
...
OD_TLSv1_3_CLIENT ] ]; $client = new SoapClient ( "some.wsdl" , [ 'context' => $context ]); エラー / 例外 ...
construct() の例 <?php $client = new SoapClient ( "some.wsdl" ); $client = new SoapClient ( "some.wsdl" , ...
rsion' => SOAP_1_2 )); $client = new SoapClient ( "some.wsdl" , array( 'login' => "some_name" , 'password' ...
=> "some_password" )); $client = new SoapClient ( "some.wsd ...
-
https://man.plustar.jp/php/soapclient.construct.html
- [similar]
- Register a concurrent call 7968
- « Yar_Concurrent_Client Yar_Concurrent_Client::loop » PHP Manual Yar_Concurrent_Client Register
...
_Concurrent_Client :: call ( "http://host/api/" , "some_method" , array( "parameters" ), "callback" ); Yar ...
_Concurrent_Client :: call ( "http://host/api/" , "some_method" , array( "parameters" )); // if the callba ...
_Concurrent_Client :: call ( "http://host/api/" , "some_method" , array( "parameters" ), "callback" , NULL ...
_Concurrent_Client :: call ( "http://host/api/" , "some_method" , array( "parameters" ), "callback" , NULL ...
-
https://man.plustar.jp/php/yar-concurrent-client.call.html
- [similar]
- The EvIo class 7787
- « EvIdle::createStopped EvIo::__construct » PHP Manual Ev The EvIo class The EvIo class (PECL ev
...
rocess and writing would at least be able to write some data. This behaviour is called level-triggering be ...
ilar) is far preferable to a program hanging until some data arrives. If for some reason it is impossible ...
re-test whether a file descriptor is really ready. Some people additionally use SIGALRM and an interval ti ...
-
https://man.plustar.jp/php/class.evio.html
- [similar]
- Basic usage for LuaSandbox 7594
- « 例 LuaSandbox » PHP Manual 例 Basic usage for LuaSandbox Basic usage for LuaSandbox Once you'v
...
to safely run user-provided Lua code. 例1 Execute some Lua code <?php $sandbox = new LuaSandbox ; $sandbo ...
024 ); $sandbox -> setCPULimit ( 10 ); // Register some functions in the Lua environment function frobnost ...
function () { throw new LuaSandboxRuntimeError ( "Something is wrong" ); } ] ); // Execute some Lua code, ...
call (); assert ( ! $ok ); assert ( $message === 'Something is wrong' ); ?> 関連キーワード: LuaSandbox , ...
-
https://man.plustar.jp/php/luasandbox.examples-basic.html
- [similar]