検索

phrase: max: clip:
target: order:
Results of 401 - 410 of about 2650 for 上の (0.080 sec.)
セッションクッキーパラメータを設定する 2264
« session_save_path session_set_save_handler » PHP Manual セッション関数 セッションクッキーパラメ ... 性は設定されません。 path クッキーが動作するドメイン上の パス 。単一のスラッシュ ('/') を指定すると、ドメイ ...上のすべてのパスで動作します。 domain クッキーの ドメイン ...
https://man.plustar.jp/php/function.session-set-cookie-params.html - [similar]
配列を昇順にソートする 2264
« sizeof uasort » PHP Manual 配列 関数 配列を昇順にソートする sort (PHP 4, PHP 5, PHP 7, PHP 8) ... cho "fruits[" . $key . "] = " . $val . "\n" ; } ?> 上の例の出力は以下となります。 fruits[0] = apple fruits[ ... cho "fruits[" . $key . "] = " . $val . "\n" ; } ?> 上の例の出力は以下となります。 fruits[0] = Orange1 fruit ...
https://man.plustar.jp/php/function.sort.html - [similar]
Gets the current stomp extension version 2264
« stomp_connect_error Stomp » PHP Manual Stomp 関数 Gets the current stomp extension version sto ... n() example <?php var_dump ( stomp_version ()); ?> 上の例の出力は、 たとえば以下のようになります。 string(5 ...
https://man.plustar.jp/php/function.stomp-version.html - [similar]
文字列から HTML および PHP タグを取り除く 2264
« strcspn stripcslashes » PHP Manual String 関数 文字列から HTML および PHP タグを取り除く strip ... _tags ( $text , '<p><a>' ); // PHP 7.4.0 以降では、上の行は以下のように書けます: // echo strip_tags($text, ... ['p', 'a']); ?> 上の例の出力は以下となります。 Test paragraph. Other tex ...
https://man.plustar.jp/php/function.strip-tags.html - [similar]
文字列の先頭および末尾にあるホワイトスペースを取り除く 2264
« substr ucfirst » PHP Manual String 関数 文字列の先頭および末尾にあるホワイトスペースを取り除く ... $binary , "\x00..\x1F" ); var_dump ( $clean ); ?> 上の例の出力は以下となります。 string(32) " These are a ... ( $fruit , 'trim_value' ); var_dump ( $fruit ); ?> 上の例の出力は以下となります。 array(3) { [0]=> string(5 ...
https://man.plustar.jp/php/function.trim.html - [similar]
Overload a VM opcode 2264
« uopz_implement uopz_redefine » PHP Manual Uopz 関数 Overload a VM opcode uopz_overload (PECL u ... T , function(){}); exit(); echo "Hello World" ; ?> 上の例の出力は以下となります。 Hello World 関連キーワード ...
https://man.plustar.jp/php/function.uopz-overload.html - [similar]
ユーザーキャッシュに格納された変数を取得する 2264
« wincache_ucache_exists wincache_ucache_inc » PHP Manual WinCache 関数 ユーザーキャッシュに格納 ... ( 'color' , $success )); var_dump ( $success ); ?> 上の例の出力は以下となります。 string(4) "blue" bool(tru ... ( $array2 , $success )); var_dump ( $success ); ?> 上の例の出力は以下となります。 array(4) { ["green"]=> st ...
https://man.plustar.jp/php/function.wincache-ucache-get.html - [similar]
ImagickDraw をクリアする 2264
« ImagickDraw::circle ImagickDraw::clone » PHP Manual ImagickDraw ImagickDraw をクリアする Imagi ... トのみが 記述されています。 ImagickDraw オブジェクト上のコマンドをすべてクリアし、 デフォルト設定で初期化しま ...
https://man.plustar.jp/php/imagickdraw.clear.html - [similar]
オブジェクトのクローン作成 2264
« finalキーワード オブジェクトの比較 » PHP Manual クラスとオブジェクト オブジェクトのクローン作成 ... "クローンオブジェクト\n" ); print_r ( $obj2 ); ?> 上の例の出力は以下となります。 元のオブジェクト MyClonea ... e (); echo (clone $dateTime )-> format ( 'Y' ); ?> 上の例の出力は、 たとえば以下のようになります。 2016 関連 ...
https://man.plustar.jp/php/language.oop5.cloning.html - [similar]
可変変数 2264
« 変数のスコープ 外部から来る変数 » PHP Manual 変数 可変変数 可変変数 変数名を可変にできると便利 ... 変変数は、変数の値をとり、変数の名前として扱います。上の例では、 hello は、ドル記号を二つ使用することにより、 ... rr = 'arr' ; echo $foo ->{ $arr [ 1 ]} . "\n" ; ?> 上の例の出力は以下となります。 I am bar. I am bar. I am ...
https://man.plustar.jp/php/language.variables.variable.html - [similar]