全文検索:
- 01 URLエンコード(urlencode, rawurlencode)
- code ===== * 半角チルダ(~)の変換についてはPHPのバージョンによって違う \\ PHP 5.2.xまでは、%7Eに変換する \\ PHP 5.3.0からは、%7Eに変換しない(チルダのまま) * 半角スペースを%20に変換する ==== 参考サイト ==== 細かな説明が載せてくれてます。 [[http://fdays.blogspot.jp/2009/07/php-url-urlencode-rawurlencode.html]] {{tag>php:文字列}}
- 02 print()
- ===== print "文字列、または変数"; ===== 例 ===== <code php> <?PHP $str="こんにちわ。"; print $str; ?> </code> {{tag>php:文字列}}
- 03 strlen()
- == strlen("文字列、変数"); ===== 例1 ===== <code> <?PHP $str=strlen("asdqwe"); print($str); ?> </code>... ==== 例2 ===== 日本語は2バイト文字なので、この場合12となる。 <code> <?PHP $str="こんにちは。"; print(strlen($str)); ?> </code> {{tag>php}}
- 04 chop()
- 空白の削除 <color red>※全角空白は削除できない</color> <code> <?PHP $str="abc "; print chop($str); ?> </code> {{tag>php:文字列}}
- 05 substr()
- sz を省略できます。 ==== 例1 ==== 結果はABCとなります。 <code> <?PHP $str="ABCDEFG"; print substr($str,0,3); ?>... 定すると、後ろから指定した数までを求めます。~ 下記の結果はEFGとなります。 <code> <?PHP $str="ABCDEFG"; print substr($str,-3); ?> </code> {{tag>php}}
- 07 rtrim()
- ====== 07 rtrim() ====== 文字列の末尾の文字を削除する[[11_php:03_function:04_chop]] のエイリアス先 ===== 書式 ===== rtrim(... ==== 空白の削除 <color red>※全角空白は削除できない</color> <code php> <?PHP $str="abc "; print rtrim($str); ?> </code>
- 08 trim()
- x0B" (ASCII 11 (0x0B)), 垂直タブ ===== 例 ===== <code php> <?PHP $str=" こんにちは "; echo trim($str); ?> </code> {{tag>php:function}}
- 06 echo()
- echo(文字列、または変数); </code> ===== 例 ===== <code> <?PHP $str="こんにちは。"; echo $str; ?> </code> {{tag>php:文字列}}
- 09 curl
- ====== 09 curl ====== <code php> $conn = curl_init(); curl_setopt($conn, CURLOPT_URL, $url); curl_seto... eturn $result; </code> === Basic認証の場合 === <code php> curl_setopt($conn, CURLOPT_USERPWD, "User:Passwo
- 10 portチェック関数
- ====== 10 portチェック関数 ====== <code> <?php function checkPort($host, $port, $timeout = 30){ $sock = @fs... eout); if(!$sock){ return false; } fclose($sock); return true; } ?> </code> {{tag>php:function}}
- 11 get_class_methods()
- t_class_methods() ====== 定義済みクラスのメソッド一覧を表示する。 get_class_methods("ClassName") {{tag>php:function}}
- 12 get_class()
- ====== 12 get_class() ====== 定義済みのクラス名を表示する get_class("CLASS") {{tag>php:function}}