検索

phrase: max: clip:
target: order:
Results of 171 - 180 of about 190 for Str (0.047 sec.)
notification コンテキストパラメータ用のコールバック関数 4573
« stream_isatty stream_register_wrapper » PHP Manual ストリーム 関数 notification コンテキストパ ... ラメータ用のコールバック関数 stream_notification_callback (PHP 5 >= 5.2.0, PHP 7, P ... HP 8) stream_notification_callback — notification コンテキス ... トパラメータ用のコールバック関数 説明 stream_notification_callback ( int $notification_code ... , int $severity , string $message , int $message_code , int $bytes_trans ...
https://man.plustar.jp/php/function.stream-notification-callback.html - [similar]
ロケールの設定に基づいてローカルな日付・時間をフォーマットする 4573
« mktime strptime » PHP Manual 日付・時刻 関数 ロケールの設定に基づいてローカルな日付・時間をフォ ... ーマットする strftime (PHP 4, PHP 5, PHP 7, PHP 8) strftime — ロケー ... が使えます: date() IntlDateFormatter::format() 説明 strftime ( string $format , ? int $timestamp = null ): ... string | false ローカルの時刻・日付を、ロケール設定にも ... ません。 そのような場合、該当する変換指定子は PHP の strftime() ではサポートされません。 また、全てのプラッ ...
https://man.plustar.jp/php/function.strftime.html - [similar]
文字の変換あるいは部分文字列の置換を行う 4573
« strtoupper substr_compare » PHP Manual String 関数 文字の変換あるいは部分文字列の置換を行う str ... rtr (PHP 4, PHP 5, PHP 7, PHP 8) strtr — 文字の変換あるいは部分文字列の置換を行う 説明 ... strtr ( string $string , string $from , string $to ): string 代 ... 替のシグネチャ (名前付き引数をサポートしていません): strtr ( string $string , array $replace_pairs ): strin ... g 引数を三つ渡した場合、この関数は string のコピーを返します。その際に、文字列中に from の ...
https://man.plustar.jp/php/function.strtr.html - [similar]
ラージオブジェクト (LOB) 4573
« エラーおよびエラー処理 PDO » PHP Manual PDO ラージオブジェクト (LOB) ラージオブジェクト (LOB) ... ストリームで表されるので、 fgets() 、 fread() および stream_get_contents() といった関数を 使用することができ ... )); $stmt -> bindColumn ( 1 , $type , PDO :: PARAM_STR , 256 ); $stmt -> bindColumn ( 2 , $lob , PDO :: P ...
https://man.plustar.jp/php/pdo.lobs.html - [similar]
クエリ用の文字列をクオートする 4573
« PDO::query PDO::rollBack » PHP Manual PDO クエリ用の文字列をクオートする PDO::quote (PHP 5 >= ... リ用の文字列をクオートする 説明 public PDO::quote ( string $string , int $type = PDO::PARAM_STR ): string ... 各ドライバのドキュメント を参照ください。 パラメータ string クオートされる文字列を指定します。 type クオート ... lite:/home/lynn/music.sql3' ); /* 単純な文字列 */ $string = 'Nice' ; print "Unquoted string: $string \n" ... ; print "Quoted string: " . $conn -> quote ( $string ) . "\n" ; ?> 上の ...
https://man.plustar.jp/php/pdo.quote.html - [similar]
Rar アーカイブをオープンする 4573
« RarArchive::isSolid RarArchive::setAllowBroken » PHP Manual RarArchive Rar アーカイブをオープン ... ト指向型 (メソッド) public static RarArchive::open ( string $filename , string $password = NULL , callable ... = NULL ): RarArchive | false 手続き型: rar_open ( string $filename , string $password = NULL , callable ... ty( $entries )) die( "No valid entries found." ); $stream = reset ( $entries )-> getStream (); if ( $stre ... (); echo "Content of first one follows:\n" ; echo stream_get_contents ( $stream ); fclose ( $stream ); ? ...
https://man.plustar.jp/php/rararchive.open.html - [similar]
SNMP クラス 4530
« snmpwalkoid SNMP::close » PHP Manual SNMP SNMP クラス SNMP クラス (PHP 5 >= 5.4.0, PHP 7, PHP ... $ exceptions_enabled ; /* メソッド */ public __construct ( int $version , string $hostname , string $com ... = -1 ) public close (): bool public get ( array | string $objectId , bool $preserveKeys = false ): mixed ... public getErrno (): int public getError (): string public getnext ( array | string $objectId ): mi ... xed public set ( array | string $objectId , array | string $type , array | stri ...
https://man.plustar.jp/php/class.snmp.html - [similar]
URL エンコードされたクエリ文字列を生成する 4530
« get_meta_tags parse_url » PHP Manual URL 関数 URL エンコードされたクエリ文字列を生成する http_ ... する 説明 http_build_query ( array | object $data , string $numeric_prefix = "" , ? string $arg_separator ... = null , int $encoding_type = PHP_QUERY_RFC1738 ): string 与えられた連想配列 (もしくは添字配列) から URL ... ; private $priv_bar = null ; public function __construct (){ $this -> pub_bar = new childClass (); $this ... blicParent&pub_bar%5Bpub%5D=publicChild 参考 parse_str() - 文字列を処理し、変数に代入する parse_url() - U ...
https://man.plustar.jp/php/function.http-build-query.html - [similar]
出力のバッファリングを有効にする 4530
« ob_list_handlers output_add_rewrite_var » PHP Manual 出力制御 関数 出力のバッファリングを有効に ... ールバックのシグネチャは、次のとおりです。 handler ( string $buffer , int $phase = ? ): string buffer 出力バ ... r ) { // apples を全て oranges に置換する return ( str_replace ( "apples" , "oranges" , $buffer )); } ob_ ...
https://man.plustar.jp/php/function.ob-start.html - [similar]
URL を解釈し、その構成要素を返す 4530
« http_build_query rawurldecode » PHP Manual URL 関数 URL を解釈し、その構成要素を返す parse_url ... URL を解釈し、その構成要素を返す 説明 parse_url ( string $url , int $component = -1 ): int | string | ar ... の例の出力は以下となります。 array(8) { ["scheme"]=> string(4) "http" ["host"]=> string(8) "hostname" ["por ... t"]=> int(9090) ["user"]=> string(8) "username" ["pass"]=> string(8) "password" [ ... "path"]=> string(5) "/path" ["query"]=> string(9) "arg=value" [" ...
https://man.plustar.jp/php/function.parse-url.html - [similar]