検索

phrase: max: clip:
target: order:
Results of 121 - 130 of about 190 for Str (0.019 sec.)
MIME 文字設定を文字列で得る 4803
« mb_parse_str mb_regex_encoding » PHP Manual マルチバイト文字列 関数 MIME 文字設定を文字列で得る ... 文字設定を文字列で得る 説明 mb_preferred_mime_name ( string $encoding ): string | false 指定したエンコーディ ... 字 , 設定 , encoding , preferred , mime , charset , string , 関数 , 取得 , パラメータ ...
https://man.plustar.jp/php/function.mb-preferred-mime-name.html - [similar]
言語およびロケール情報を検索する 4803
« money_format nl2br » PHP Manual String 関数 言語およびロケール情報を検索する nl_langinfo (PHP ... ケール情報を検索する 説明 nl_langinfo ( int $item ): string | false nl_langinfo() はロケールカテゴリの独立し ... の月の名前の略式表記 MON_(1-12) n 番目の月の名前 AM_STR 午前を表す文字列 PM_STR 午後を表す文字列 D_T_FMT s ... ーマット文字列として使用することが可能な文字列 D_FMT strftime() で日付を表すためのフォーマット文字列として使 ... 用することが可能な文字列 T_FMT strftime() で時刻を表すためのフォーマット文字列として使 ...
https://man.plustar.jp/php/function.nl-langinfo.html - [similar]
SQL コマンドとパラメータを分割してサーバーへ送信し、その結果を待つ 4803
« pg_put_line pg_query » PHP Manual PostgreSQL 関数 SQL コマンドとパラメータを分割してサーバーへ ... _query_params ( PgSql\Connection $connection = ? , string $query , array $params ): PgSql\Result | false ... e's Widgets" )); // pg_query を使用した場合と比較 $str = pg_escape_string ( "Joe's Widgets" ); $result = ... ( $dbconn , "SELECT * FROM shops WHERE name = ' { $str } '" ); ?> 参考 pg_query() - クエリを実行する 関連 ...
https://man.plustar.jp/php/function.pg-query-params.html - [similar]
ふたつのパスの差分を再帰的に取得する 4803
« svn_delete svn_export » PHP Manual SVN 関数 ふたつのパスの差分を再帰的に取得する svn_diff (PEC ... ふたつのパスの差分を再帰的に取得する 説明 svn_diff ( string $path1 , int $rev1 , string $path2 , int $rev2 ... cal ( $path1 , $rev1 , $path2 , $rev2 ) { $path1 = str_replace ( '\\' , '/' , realpath ( $path1 )); $path ... 2 = str_replace ( '\\' , '/' , realpath ( $path2 )); retur ...
https://man.plustar.jp/php/function.svn-diff.html - [similar]
プリペアドステートメントを実行する 4803
« PDOStatement::errorInfo PDOStatement::fetch » PHP Manual PDOStatement プリペアドステートメント ... 数の要素からなる、 値の配列。すべての値は PDO::PARAM_STR として扱われます。 ひとつのパラメータに対して複数の ... ); $sth -> bindParam ( 2 , $colour , PDO :: PARAM_STR , 12 ); $sth -> execute (); ?> 例5 IN 句で配列を使 ...
https://man.plustar.jp/php/pdostatement.execute.html - [similar]
SQL の集約関数として使用する PHP 関数を登録する 4803
« SQLite3::__construct SQLite3::createCollation » PHP Manual SQLite3 SQL の集約関数として使用する ... 数を登録する 説明 public SQLite3::createAggregate ( string $name , callable $stepCallback , callable $fina ... QLite3 ( ':memory:' ); $db -> exec ( "CREATE TABLE strings(a)" ); $insert = $db -> prepare ( 'INSERT INTO ... strings VALUES (?)' ); foreach ( $data as $str ) { $in ... sert -> bindValue ( 1 , $str ); $insert -> execute (); } $insert = null ; funct ...
https://man.plustar.jp/php/sqlite3.createaggregate.html - [similar]
マルチバイト文字列 4770
« intl_is_failure はじめに » PHP Manual 自然言語および文字エンコーディング マルチバイト文字列 マ ... 大文字小文字を無視した正規表現マッチ mb_get_info — mbstring の内部設定値を取得する mb_http_input — HTTP 入力 ... エンコーディングを変換するコールバック関数 mb_parse_str — GET/POST/COOKIE データをパースし、グローバル変数 ... it — マルチバイト文字列を正規表現により分割する mb_str_split — マルチバイト文字列を受取り、文字の配列を返 ... す mb_strcut — 文字列の一部を得る mb_strimwidth — 指定した幅 ...
https://man.plustar.jp/php/book.mbstring.html - [similar]
文字列をより小さな部分に分割する 4770
« chr convert_cyr_string » PHP Manual String 関数 文字列をより小さな部分に分割する chunk_split ( ... 文字列をより小さな部分に分割する 説明 chunk_split ( string $string , int $length = 76 , string $separator ... = "\r\n" ): string 文字列をより小さな部分に分割する際に使用され、 ... 文字毎に文字列 separator を挿入します。 パラメータ string 分割したい文字列。 length 各部分の長さ。 separa ... RFC 2045 に基づき $data をフォーマットします $new_string = chunk_split ( base64_encode ( $data )); ?> 参 ...
https://man.plustar.jp/php/function.chunk-split.html - [similar]
サーバ側のセッションキーを計算する 4770
« sodium_crypto_kx_seed_keypair sodium_crypto_pwhash_scryptsalsa208sha256_str_verify » PHP Manua ... 計算する 説明 sodium_crypto_kx_server_session_keys ( string $server_key_pair , string $client_key ): array ...
https://man.plustar.jp/php/function.sodium-crypto-kx-server-session-keys.html - [similar]
関数の引数 4770
« ユーザー定義関数 戻り値 » PHP Manual 関数 関数の引数 関数の引数 引数のリストにより関数へ情報を ... name , $arg_with_default = 5 , $again = 'a default string' , // この最後のカンマは、8.0.0 より前では許され ... のリファレンス渡し <?php function add_some_extra (& $string ) { $string .= 'and something extra.' ; } $str ... = 'This is a string, ' ; add_some_extra ( $str ); echo $str ; // 出 ... 力は 'This is a string, and something extra.' となります ?> リファレン ...
https://man.plustar.jp/php/functions.arguments.html - [similar]