検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 165 for exec (0.001 sec.)
Execute system commands. 10581
« Swoole\Process::__destruct Swoole\Process::exit » PHP Manual Swoole\Process Execute system com ... mands. Swoole\Process::exec (PECL swoole >= 1.9.0) Swoole\Process::execExec ... ute system commands. 説明 public Swoole\Process::exec ( string $exec_file , string $args ): ReturnType T ... ipe to the parent process will be kept. パラメータ exec_file args 戻り値 関連キーワード: system , Execute ... , commands , Swoole , Process , exec , process , args , file , string ...
https://man.plustar.jp/php/swoole-process.exec.html - [similar]
SQL ステートメントを実行し、作用した行数を返す 10194
« PDO::errorInfo PDO::getAttribute » PHP Manual PDO SQL ステートメントを実行し、作用した行数を返 ... す PDO::exec (PHP 5 >= 5.1.0, PHP 7, PHP 8, PECL pdo >= 0.1.0) ... PDO::exec — SQL ステートメントを実行し、作用した行数を返す 説 ... 明 public PDO::exec ( string $statement ): int | false PDO::exec() は、 ... 文を実行し、文によって作用した行数を返します。 PDO::exec() は SELECT 文からは結果を返しません。 プログラム中 ...
https://man.plustar.jp/php/pdo.exec.html - [similar]
odbc_exec のエイリアス 9876
« odbc_data_source odbc_error » PHP Manual ODBC 関数 odbc_exec のエイリアス odbc_do (PHP 4, PHP ... 5, PHP 7, PHP 8) odbc_do — odbc_exec() のエイリアス 説明 この関数は次の関数のエイリアス ... です。 odbc_exec() . 関連キーワード: exec , 関数 , data , ...
https://man.plustar.jp/php/function.odbc-do.html - [similar]
外部プログラムを実行する 9682
« escapeshellcmd passthru » PHP Manual プログラム実行関数 外部プログラムを実行する exec (PHP 4, ... PHP 5, PHP 7, PHP 8) exec — 外部プログラムを実行する 説明 exec ( string $com ... null , int &$result_code = null ): string | false exec() は指定されたコマンド command を実行します。 パラ ... れません。 配列に既に何らかの要素が 含まれる場合は、 exec() は配列の最後に追加される ことに注意してください。 ... 関数が要素を追加することを望まないのなら、 それが exec() に渡される前に、配列の unset() を呼び出してくださ ...
https://man.plustar.jp/php/function.exec.html - [similar]
シェルによりコマンドを実行し、文字列として出力全体を返す 9295
« proc_terminate system » PHP Manual プログラム実行関数 シェルによりコマンドを実行し、文字列とし ... て出力全体を返す shell_exec (PHP 4, PHP 5, PHP 7, PHP 8) shell_exec — シェルに ... ンドを実行し、文字列として出力全体を返す 説明 shell_exec ( string $command ): string | false | null この関数 ... 。 プログラムの終了コードを調べる必要があるときには exec() を使いましょう。 エラー / 例外 パイプがオープンで ... E_WARNING レベルの警告が発生します。 例 例1 shell_exec() の例 <?php $output = shell_exec ( 'ls -lart' ); ...
https://man.plustar.jp/php/function.shell-exec.html - [similar]
FTP サーバー上でのコマンドの実行をリクエストする 8908
« ftp_delete ftp_fget » PHP Manual FTP 関数 FTP サーバー上でのコマンドの実行をリクエストする ftp ... _exec (PHP 4 >= 4.0.3, PHP 5, PHP 7, PHP 8) ftp_exec — F ... ーバー上でのコマンドの実行をリクエストする 説明 ftp_exec ( FTP\Connection $ftp , string $command ): bool FT ... P サーバーに SITE EXEC command リクエストを 送信します。 パラメータ ftp F ... ョンでは、 リソース を期待していました。 例 例1 ftp_exec() の例 <?php // 変数を初期化します。 $command = 'l ...
https://man.plustar.jp/php/function.ftp-exec.html - [similar]
指定したデータベースに、結果を返さないクエリを実行する 8852
« SQLite3::escapeString SQLite3::lastErrorCode » PHP Manual SQLite3 指定したデータベースに、結果 ... を返さないクエリを実行する SQLite3::exec (PHP 5 >= 5.3.0, PHP 7, PHP 8) SQLite3::exec — 指定 ... 結果を返さないクエリを実行する 説明 public SQLite3::exec ( string $query ): bool 指定したデータベースに、結 ... 、失敗した場合に false を返します。 例 例1 SQLite3::exec() の例 <?php $db = new SQLite3 ( 'mysqlitedb.db' ) ... ; $db -> exec ( 'CREATE TABLE bar (bar TEXT)' ); ?> 関連キーワー ...
https://man.plustar.jp/php/sqlite3.exec.html - [similar]
SQL 文を直接実行する 8658
« db2_escape_string db2_execute » PHP Manual IBM DB2 関数 SQL 文を直接実行する db2_exec (PECL ib ... m_db2 >= 1.0.0) db2_exec — SQL 文を直接実行する 説明 db2_exec ( resource $c ... L 文を準備することを検討してください。その後で db2_execute() をコールして入力値を渡すことで、 SQL インジェ ... して何度も発行する場合は、 db2_prepare() および db2_execute() の使用を検討してください。 これにより、データ ... の実行に失敗した場合に false を返します。 例 例1 db2_exec() でのテーブルの作成 以下の例では、 db2_exec() を使 ...
https://man.plustar.jp/php/function.db2-exec.html - [similar]
現在の cURL ハンドルから、サブ接続を実行する 8146
« curl_multi_errno curl_multi_getcontent » PHP Manual cURL 関数 現在の cURL ハンドルから、サブ接 ... 続を実行する curl_multi_exec (PHP 5, PHP 7, PHP 8) curl_multi_exec — 現在の cUR ... L ハンドルから、サブ接続を実行する 説明 curl_multi_exec ( CurlMultiHandle $multi_handle , int &$still_runn ... は、 resource を期待していました。 例 例1 curl_multi_exec() の例 この例は、ふたつの cURL ハンドルを作成し、そ ... // ハンドルを実行します do { $status = curl_multi_exec ( $mh , $active ); if ( $active ) { // Wait a shor ...
https://man.plustar.jp/php/function.curl-multi-exec.html - [similar]
cURL セッションを実行する 7884
« curl_escape curl_file_create » PHP Manual cURL 関数 cURL セッションを実行する curl_exec (PHP 4 ... >= 4.0.2, PHP 5, PHP 7, PHP 8) curl_exec — cURL セッションを実行する 説明 curl_exec ( CurlH ... ER , 0 ); // URL を取得し、ブラウザに渡します curl_exec ( $ch ); // cURL リソースを閉じ、システムリソースを ... 解放します curl_close ( $ch ); ?> 参考 curl_multi_exec() - 現在の cURL ハンドルから、サブ接続を実行する 関 ... 連キーワード: cURL , 実行 , セッション , 関数 , exec , 失敗 , handle , バージョン , 論理 , 取得 ...
https://man.plustar.jp/php/function.curl-exec.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT