Results of 1 - 10 of about 29 for cmd (0.003 sec.)
- The EventHttpRequest class 14782
- « EventHttpConnection::setTimeout EventHttpRequest::addHeader » PHP Manual Event The EventHttpRe
...
class EventHttpRequest { /* Constants */ const int CMD_GET = 1 ; const int CMD_POST = 2 ; const int CMD_H ...
EAD = 4 ; const int CMD_PUT = 8 ; const int CMD_DELETE = 16 ; const int CM ...
D_OPTIONS = 32 ; const int CMD_TRACE = 64 ; const int CMD_CONNECT = 128 ; const i ...
nt CMD_PATCH = 256 ; const int INPUT_HEADER = 1 ; const i ...
-
https://man.plustar.jp/php/class.eventhttprequest.html
- [similar]
- The MongoDB\Driver\Command class 11649
- « MongoDB\Driver\Manager::startSession MongoDB\Driver\Command::__construct » PHP Manual MongoDB\
...
lections <?php class CreateCollection { protected $cmd = array(); function __construct ( $collectionName ...
) { $this -> cmd [ "create" ] = (string) $collectionName ; } functi ...
n ( $maxBytes , $maxDocuments = false ) { $this -> cmd [ "capped" ] = true ; $this -> cmd [ "size" ] = (i ...
nt) $maxBytes ; if ( $maxDocuments ) { $this -> cmd [ "max" ] = (int) $maxDocuments ; } } function use ...
-
https://man.plustar.jp/php/class.mongodb-driver-command.html
- [similar]
- Script Injection Attacks 9887
- « Request Injection Attacks MongoDB\Driver » PHP Manual Security Script Injection Attacks Script
...
/ Don't do this!!! $username = $_GET [ 'field' ]; $cmd = new \ MongoDB \ Driver \ Command ( [ 'eval' => " ...
!');" ] ); $r = $m -> executeCommand ( 'dramio' , $cmd ); ?> However, what if a malicious user passes in ...
username is set to "'); db.users.drop(); print('" $cmd = new \ MongoDB \ Driver \ Command ( [ 'eval' => " ...
!');" ] ); $r = $m -> executeCommand ( 'dramio' , $cmd ); ?> Now MongoDB executes the JavaScript string " ...
-
https://man.plustar.jp/php/mongodb.security.script_injection.html
- [similar]
- Returns the request command(method) 9348
- « EventHttpRequest::getBufferEvent EventHttpRequest::getConnection » PHP Manual EventHttpRequest
...
urns the request command, one of EventHttpRequest::CMD_* constants. パラメータ この関数にはパラメータはあ ...
urns the request command, one of EventHttpRequest::CMD_* constants. 関連キーワード: Returns , request , c ...
ommand , EventHttpRequest , the , getCommand , CMD , constants , パラメータ , getBufferEvent ...
-
https://man.plustar.jp/php/eventhttprequest.getcommand.html
- [similar]
- Makes an HTTP request over the specified connection 8941
- « EventHttpConnection::getPeer EventHttpConnection::setCloseCallback » PHP Manual EventHttpConne
...
ified connection. type is one of EventHttpRequest::CMD_* constants. パラメータ req The connection object ...
to send the request. type One of EventHttpRequest::CMD_* constants . uri The URI associated with the requ ...
$conn -> makeRequest ( $req , EventHttpRequest :: CMD_GET , "/index.cphp" ); $base -> loop (); ?> 上の例 ...
on , the , EventHttpRequest , makeRequest , type , CMD ...
-
https://man.plustar.jp/php/eventhttpconnection.makerequest.html
- [similar]
- fd について C ライブラリの fcntl を実行する 8941
- « dio_close dio_open » PHP Manual ダイレクト IO 関数 fd について C ライブラリの fcntl を実行する
...
tl を実行する 説明 dio_fcntl ( resource $fd , int $cmd , mixed $args = ? ): mixed 関数 dio_fcntl() は、フ ...
ァイル記述子 fd において cmd で指定された処理を行います。いくつかのコマンドでは ...
す。 パラメータ fd dio_open() が返すファイル記述子。 cmd 以下の処理のいずれか。 F_SETLK - ロックが設定あるい ...
拡張モジュールが必要です。 args args は連想配列で、 cmd が F_SETLK あるいは F_SETLLW の際に以下のキーを保持 ...
-
https://man.plustar.jp/php/function.dio-fcntl.html
- [similar]
- コマンドを実行し、入出力用にファイルポインタを開く 8826
- « proc_nice proc_terminate » PHP Manual プログラム実行関数 コマンドを実行し、入出力用にファイルポ
...
、 options の bypass_shell を true に設定しないと、 cmd.exe (実際は %ComSpec% ) に command の値を クォート ...
と一緒に渡してしまいます。 この振る舞いによって、 cmd.exe が command からクォートを削除してしまうため、 ...
(詳細は cmd.exe のドキュメントを参照してください) 予期しない、 ...
潜在的に危険とさえ言える結果になります。なぜなら、 cmd.exe のエラーメッセージには、 渡された command (の一 ...
-
https://man.plustar.jp/php/function.proc-open.html
- [similar]
- Sets the what HTTP methods are supported in requests accepted by this server, an... 8239
- « EventHttp::removeServerAlias EventHttp::setCallback » PHP Manual EventHttp Sets the what HTTP
...
POST , HEAD , PUT , DELETE . See EventHttpRequest::CMD_* constants. パラメータ methods A bit mask of Even ...
tHttpRequest::CMD_* constants . 戻り値 値を返しません。 関連キーワー ...
-
https://man.plustar.jp/php/eventhttp.setallowedmethods.html
- [similar]
- ファイルが実行可能かどうかを調べる 8174
- « is_dir is_file » PHP Manual ファイルシステム 関数 ファイルが実行可能かどうかを調べる is_execut
...
可能と見なされます。 後方互換のため、拡張子 .bat や .cmd が付いたファイルも同様に実行可能と見なされます。 P ...
HP 7.4.0 より前のバージョンでは、 拡張子 .bat や .cmd が付いた空でないファイルは実行可能と見なされていま ...
e , 注意 , 関数 , 参照 , bat , サポート , エラー , cmd ...
-
https://man.plustar.jp/php/function.is-executable.html
- [similar]
- 例 8059
- « リソース型 Event flags » PHP Manual Event 例 例 例1 Simple HTTP client <?php // Read callback
...
; $http -> setAllowedMethods ( EventHttpRequest :: CMD_GET | EventHttpRequest :: CMD_POST ); $http -> set ...
; $http -> setAllowedMethods ( EventHttpRequest :: CMD_GET | EventHttpRequest :: CMD_POST ); $http -> set ...
$conn -> makeRequest ( $req , EventHttpRequest :: CMD_POST , "/dump" ); $base -> dispatch (); echo "END\ ...
$conn -> makeRequest ( $req , EventHttpRequest :: CMD_GET , "/index.cphp" ); $base -> loop (); ?> 上の例 ...
-
https://man.plustar.jp/php/event.examples.html
- [similar]