Results of 1 - 10 of about 1032 for example (0.004 sec.)
- サンプル 13946
- « 関数・メソッド 変更履歴 » PHP Manual 索引 サンプル サンプル マニュアル内の全サンプルの一覧 Example
...
mple#0 - 初歩的な例 Example#1 - 初めての PHP スクリプト: hello.php Example#2 - ...
PHP からシステムに関する情報を取得する Example#3 - 変数を出力する (配列要素) Example#4 - 制御構造 ...
および 関数の使用例 Example#5 - HTML および PHP モードの両方を混在させる Examp ...
le#6 - 簡単な HTML フォーム Example#7 - フォームからのデータを出力する Example#8 - lig ...
-
https://man.plustar.jp/php/indexes.examples.html
- [similar]
- 複数の MIME ヘッダフィールドを一度にデコードする 8478
- « iconv_get_encoding iconv_mime_decode » PHP Manual iconv 関数 複数の MIME ヘッダフィールドを一度
...
Subject: =?UTF-8?B?UHLDvGZ1bmcgUHLDvGZ1bmc=?= To: example@example.com Date: Thu, 1 Jan 1970 00:00:00 +0000 M ...
essage-Id: <example@example.com> Received: from localhost (localhost [ ...
127.0.0.1]) by localhost with SMTP id example for <example@example.com>; Thu, 1 Jan 1970 00:00:0 ...
0 +0000 (UTC) (envelope-from example-return-0000-example=example.com@example.com) Recei ...
-
https://man.plustar.jp/php/function.iconv-mime-decode-headers.html
- [similar]
- メールを送信する 6927
- « ezmlm_hash Mailparse » PHP Manual メール 関数 メールを送信する mail (PHP 4, PHP 5, PHP 7, PHP
...
ければ なりません。例えば以下のようなものです。 user@example.com user@example.com, anotheruser@example.com User ...
<user@example.com> User <user@example.com>, Another User <anothe ...
ruser@example.com> subject 送信するメールの表題。 警告 表題は » ...
e , 70 , "\r\n" ); // 送信する mail ( 'caffeinated@example.com' , 'My Subject' , $message ); ?> 例2 追加ヘッダ ...
-
https://man.plustar.jp/php/function.mail.html
- [similar]
- The CommonMark\CQL class 6246
- « CommonMark\Parser::finish CommonMark\CQL::__construct » PHP Manual CommonMark The CommonMark\C
...
ree: firstChild lastChild previous next parent For example, /firstChild/lastChild would travel to the last ch ...
ild node. Loops CQL can be instructed to loop, for example through the children of, or siblings to a particul ...
de, by using the path children , or siblings . For example, /firstChild/children will travel to all the child ...
ravel by using a subquery like [/firstChild] . For example, /firstChild/children[/firstChild] will travel to ...
-
https://man.plustar.jp/php/class.commonmark-cql.html
- [similar]
- 例 6197
- « ストリームのエラー ストリームラッパーとして登録するクラスの例 » PHP Manual ストリーム 例 例 目
...
file:///home/bar/foo.txt" ); /* HTTP を利用し、www.example.com にあるリモートのファイルを読み出す */ $httpfil ...
e = file_get_contents ( "http://www.example.com/foo.txt" ); /* HTTPS を利用し、www.example.com ...
す */ $httpsfile = file_get_contents ( "https://www.example.com/foo.txt" ); /* FTP を利用し、ftp.example.com に ...
ftpfile = file_get_contents ( "ftp://user:pass@ftp.example.com/foo.txt" ); /* FTPS を利用し、ftp.example.com ...
-
https://man.plustar.jp/php/stream.examples.html
- [similar]
- 例 5741
- « 定義済み定数 Procedural PECL/rrd example » PHP Manual RRD 例 例 目次 Procedural PECL/rrd example
...
le OOP PECL/rrd example 関連キーワード: 例 , rrd , example , Procedural , ...
-
https://man.plustar.jp/php/rrd.examples.html
- [similar]
- 例 5741
- « 定義済み定数 Yar_Server » PHP Manual Yar 例 例 例1 Yar Server Example <?php /* assume this pag
...
e can be accessed by http://example.com/operator.php */ class Operator { /** * Add two ...
力は、 たとえば以下のようになります。 例3 Yar Client Example <?php $client = new yar_client ( "http://example.c ...
tor::_add() failed' in * 例4 Yar Concurrent Client Example <?php function callback ( $ret , $callinfo ) { ech ...
ervices */ Yar_Concurrent_Client :: call ( "http://example.com/operator.php" , "add" , array( 1 , 2 ), "callb ...
-
https://man.plustar.jp/php/yar.examples.html
- [similar]
- RFC 822 準拠のアドレスをパースする 5516
- « mailparse_msg_parse mailparse_stream_encode » PHP Manual Mailparse 関数 RFC 822 準拠のアドレス
...
es アドレスを含む文字列。たとえば Wez Furlong <wez@example.com>, doe@example.com のようになります。 注意 : こ ...
rse_addresses() の例 <?php $to = 'Wez Furlong <wez@example.com>, doe@example.com' ; var_dump ( mailparse_rfc8 ...
ng(11) "Wez Furlong" ["address"]=> string(15) "wez@example.com" ["is_group"]=> bool(false) } [1]=> array(3) { ...
["display"]=> string(15) "doe@example.com" ["address"]=> string(15) "doe@example.com" [" ...
-
https://man.plustar.jp/php/function.mailparse-rfc822-parse-addresses.html
- [similar]
- 無名関数 5516
- « 内部(ビルトイン)関数 アロー関数 » PHP Manual 関数 無名関数 無名関数 無名関数は クロージャ と
...
継ぎ <?php $message = 'hello' ; // "use" がない場合 $example = function () { var_dump ( $message ); }; $example ...
(); // $message を引き継ぎます $example = function () use ( $message ) { var_dump ( $messa ...
ge ); }; $example (); // 引き継がれた変数の値は、関数が定義された時点 ...
ばれた時点のものではありません $message = 'world' ; $example (); // $message をリセットします $message = 'hello ...
-
https://man.plustar.jp/php/functions.anonymous.html
- [similar]
- Internet ドメイン: TCP、UDP、SSL、および TLS 5468
- « サポートされるソケットトランスポートのリスト Unix ドメイン: Unix および UDG » PHP Manual サポー
...
れば、 tcp:// と仮定されます。 127.0.0.1 fe80::1 www.example.com tcp://127.0.0.1 tcp://fe80::1 tcp://www.exampl ...
e.com udp://www.example.com ssl://www.example.com sslv2://www.example.com ...
sslv3://www.example.com tls://www.example.com Internet ドメインソケット ...
す。 tcp://127.0.0.1:80 tcp://[fe80::1]:80 tcp://www.example.com:80 注意 : IPv6 数値アドレスとポート番号 IPv4 や ...
-
https://man.plustar.jp/php/transports.inet.html
- [similar]