検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 91 for escape (0.007 sec.)
接続の現在の文字セットを考慮して、SQL 文で使用する文字列の特殊文字をエスケープす... 8685
« mysqli::real_connect mysqli::real_query » PHP Manual mysqli 接続の現在の文字セットを考慮して、 ... 用する文字列の特殊文字をエスケープする mysqli::real_escape_string mysqli_real_escape_string (PHP 5, PHP 7, PH ... P 8) mysqli::real_escape_string -- mysqli_real_escape_string — 接続の現在の ... ープする 説明 オブジェクト指向型 public mysqli::real_escape_string ( string $string ): string 手続き型 mysqli_ ... real_escape_string ( mysqli $mysql , string $string ): string ...
https://man.plustar.jp/php/mysqli.real-escape-string.html - [similar]
bytea フィールドに挿入するために文字列をエスケープする 8286
« pg_end_copy pg_escape_identifier » PHP Manual PostgreSQL 関数 bytea フィールドに挿入するために ... 文字列をエスケープする pg_escape_bytea (PHP 4 >= 4.2.0, PHP 5, PHP 7, PHP 8) pg_esc ... ールドに挿入するために文字列をエスケープする 説明 pg_escape_bytea ( PgSql\Connection $connection = ? , string ... $data ): string pg_escape_bytea() は、bytea 型のために文字列を エスケープし、 ... 。例: INSERT INTO test_table (image) VALUES ('$image_escaped'::bytea); PostgreSQL 7.2.2 以降ではキャストする必 ...
https://man.plustar.jp/php/function.pg-escape-bytea.html - [similar]
指定した文字列を URL エンコードする 7767
« curl_error curl_exec » PHP Manual cURL 関数 指定した文字列を URL エンコードする curl_escape (P ... HP 5 >= 5.5.0, PHP 7, PHP 8) curl_escape — 指定した文字列を URL エンコードする 説明 curl_es ... ョンでは、 resource を期待していました。 例 例1 curl_escape() の例 <?php // curl ハンドルを作成します $ch = cu ... メータ用の文字列をエスケープします $location = curl_escape ( $ch , 'Hofbräuhaus / München' ); // その結果: Ho ... l_exec ( $ch ); curl_close ( $ch ); ?> 参考 curl_unescape() - URL エンコードされた文字列をデコードする urlen ...
https://man.plustar.jp/php/function.curl-escape.html - [similar]
CSV 文字列をパースして配列に格納する 7408
« str_ends_with str_ireplace » PHP Manual String 関数 CSV 文字列をパースして配列に格納する str_g ... parator = "," , string $enclosure = "\"" , string $escape = "\\" ): array CSV 形式の文字列入力のフィールドを ... フィールド囲み文字 (シングルバイト文字 1 文字のみ)。 escape エスケープ文字 (シングルバイト文字 最大1文字)。デフ ... は二回出力されることでエスケープされます。 しかし、 escape の文字を代わりに使うこともできます。 よって、デフォ ... closure 文字をエスケープすることを許可する以外に、 escape 文字は特別な意味を何ら持ちません; つまり、自分自身 ...
https://man.plustar.jp/php/function.str-getcsv.html - [similar]
フィールドの配列を CSV の行として書き出す 7408
« SplFileObject::fpassthru SplFileObject::fread » PHP Manual SplFileObject フィールドの配列を CS ... parator = "," , string $enclosure = "\"" , string $escape = "\\" , string $eol = "\n" ): int | false fields ... ィールドの囲み文字 (シングルバイト文字 一文字のみ)。 escape オプションの escape は、エスケープ文字 (シングルバ ... 度続けることでエスケープします。 ただし、その直前に escape がある場合は別です。 戻り値 書き出した文字列の長さ ... .1.0 オプションの引数 eol が追加されました。 7.4.0 escape パラメータは空文字列を受け入れるようになりました。 ...
https://man.plustar.jp/php/splfileobject.fputcsv.html - [similar]
Send a CUBRID query 7328
« cubrid_ping cubrid_real_escape_string » PHP Manual CUBRID MySQL 互換関数 Send a CUBRID query c ... SQL query Data inside the query should be properly escaped . conn_identifier The CUBRID connection. If the c ... an SQL query // For more examples, see cubrid_real_escape_string() $query = sprintf ( "SELECT firstname, las ... RE firstname='%s' AND lastname='%s'" , cubrid_real_escape_string ( $firstname ), cubrid_real_escape_string ( ... cubrid_error() - Get the error message cubrid_real_escape_string() - Escape special characters in a string f ...
https://man.plustar.jp/php/function.cubrid-query.html - [similar]
ファイルポインタから行を取得し、CSVフィールドを処理する 7248
« fgetc fgets » PHP Manual ファイルシステム 関数 ファイルポインタから行を取得し、CSVフィールドを ... parator = "," , string $enclosure = "\"" , string $escape = "\\" ): array | false fgets() に動作は似ています ... 文字 (シングルバイト文字 1 文字のみ) を設定します。 escape オプションの escape パラメータで、エスケープ文字 ( ... 内で2回出力される ことでエスケープされます。しかし、 escape 文字はその代替として使えます。 デフォルトのパラメー ... "" と \" は同じ意味を持ちます。 enclosure の文字を escape 文字でエスケープすることには、 特別な意味はありませ ...
https://man.plustar.jp/php/function.fgetcsv.html - [similar]
行を CSV 形式にフォーマットし、ファイルポインタに書き込む 7248
« fpassthru fputs » PHP Manual ファイルシステム 関数 行を CSV 形式にフォーマットし、ファイルポイ ... parator = "," , string $enclosure = "\"" , string $escape = "\\" , string $eol = "\n" ): int | false fputcsv ... 文字 (シングルバイト文字 一文字だけ) を指定します。 escape オプションの escape は、エスケープ文字 (シングルバ ... 度続けることでエスケープします。 ただし、その直前に escape がある場合は別です。 戻り値 書き込んだ文字列の長さ ... .1.0 オプションの引数 eol が追加されました。 7.4.0 escape パラメータが、 (RFC 4180 に準拠していない) 独自仕様 ...
https://man.plustar.jp/php/function.fputcsv.html - [similar]
ファイルから行を取り出し CSV フィールドとして処理する 7168
« SplFileObject::fgetc SplFileObject::fgets » PHP Manual SplFileObject ファイルから行を取り出し ... parator = "," , string $enclosure = "\"" , string $escape = "\\" ): array | false CSV フォーマットのファイル ... ject::setCsvControl() を使ってセットされた値です。 escape エスケープ文字 (シングルバイト文字 最大で1文字)。 ... 内で2回出力される ことでエスケープされます。しかし、 escape 文字はその代替として使えます。 デフォルトのパラメー ... "" と \" は同じ意味を持ちます。 enclosure の文字を escape 文字でエスケープすることには、 特別な意味はありませ ...
https://man.plustar.jp/php/splfileobject.fgetcsv.html - [similar]
Description 7089
« Imagick::hasPreviousImage Imagick::identifyImage » PHP Manual Imagick Description Imagick::ide ... preted text. See http://www.imagemagick.org/script/escape.php for escape sequences. パラメータ embedText A s ... at , string , embedText , formatting , sequences , escape , www , format ...
https://man.plustar.jp/php/imagick.identifyformat.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT