検索

phrase: max: clip:
target: order:
Results of 561 - 570 of about 1200 for var (0.041 sec.)
設定オプションの値を設定する 2734
« ini_restore memory_get_peak_usage » PHP Manual PHP オプション/情報 関数 設定オプションの値を設 ... echo ini_get ( 'display_errors' ); ?> 参考 get_cfg_var() - PHP 設定オプションの値を取得する ini_get() - 設 ... ing , option , バージョン , スクリプト , restore , var ...
https://man.plustar.jp/php/function.ini-set.html - [similar]
変数が整数型かどうかを検査する 2734
« is_float is_integer » PHP Manual 変数操作 関数 変数が整数型かどうかを検査する is_int (PHP 4, P ... ; foreach ( $values as $value ) { echo "is_int(" ; var_export ( $value ); echo ") = " ; var_dump ( is_int ...
https://man.plustar.jp/php/function.is-int.html - [similar]
変数がオブジェクトかどうかを検査する 2734
« is_numeric is_real » PHP Manual 変数操作 関数 変数がオブジェクトかどうかを検査する is_object ( ... > students = array( 'Kalle' , 'Ross' , 'Felipe' ); var_dump ( get_students ( null )); var_dump ( get_stud ...
https://man.plustar.jp/php/function.is-object.html - [similar]
変数の型が文字列かどうかを調べる 2734
« is_scalar isset » PHP Manual 変数操作 関数 変数の型が文字列かどうかを調べる is_string (PHP 4, ... oreach ( $values as $value ) { echo "is_string(" ; var_export ( $value ); echo ") = " ; echo var_dump ( i ...
https://man.plustar.jp/php/function.is-string.html - [similar]
クラスメソッドが存在するかどうかを確認する 2734
« is_subclass_of property_exists » PHP Manual クラス/オブジェクト関数 クラスメソッドが存在するか ... s() の例 <?php $directory = new Directory ( '.' ); var_dump ( method_exists ( $directory , 'read' )); ?> ... staticメソッドに対する method_exists() の例 <?php var_dump ( method_exists ( 'Directory' , 'read' )); ?> ...
https://man.plustar.jp/php/function.method-exists.html - [similar]
指定した設定に基づき新規辞書をロードする 2734
« pspell_config_save_repl pspell_new_personal » PHP Manual Pspell 関数 指定した設定に基づき新規辞 ... en" ); pspell_config_personal ( $pspell_config , "/var/dictionaries/custom.pws" ); pspell_config_repl ( $ ... pspell_config , "/var/dictionaries/custom.repl" ); $pspell = pspell_new_ ...
https://man.plustar.jp/php/function.pspell-new-config.html - [similar]
全二重接続を終了する 2734
« stream_socket_server stream_supports_lock » PHP Manual ストリーム 関数 全二重接続を終了する st ... = stream_socket_client ( 'tcp://127.0.0.1:1337' ); var_dump ( fputs ( $client , "hello" )); stream_socket ... _shutdown ( $client , STREAM_SHUT_WR ); var_dump ( fputs ( $client , "hello" )); // ここでは動 ...
https://man.plustar.jp/php/function.stream-socket-shutdown.html - [similar]
オブジェクトの直近のエラーメッセージを取得する 2734
« IntlCalendar::getErrorCode IntlCalendar::getFirstDayOfWeek » PHP Manual IntlCalendar オブジェク ... ntlCalendar :: createInstance ( 'UTC' , 'en_US' ); var_dump ( $cal -> getErrorMessage ()); $cal -> getWee ... kendTransition ( IntlCalendar :: DOW_WEDNESDAY ); var_dump ( $cal -> getErrorMessage ()); 上の例の出力は ...
https://man.plustar.jp/php/intlcalendar.geterrormessage.html - [similar]
コードポイントと対になる括弧文字を取得する 2734
« IntlChar::forDigit IntlChar::getBlockCode » PHP Manual IntlChar コードポイントと対になる括弧文 ... 返します。 例 例1 さまざまなコードポイントの例 <?php var_dump ( IntlChar :: getBidiPairedBracket ( 91 )); v ...
https://man.plustar.jp/php/intlchar.getbidipairedbracket.html - [similar]
既存項目の値を置換する 2734
« Memcache::pconnect Memcache::set » PHP Manual Memcache 既存項目の値を置換する Memcache::replac ... 換する 説明 Memcache::replace ( string $key , mixed $var , int $flag = ? , int $expire = ? ): bool Memcache ... 可能です。 パラメータ key 項目に関連付けられたキー。 var 格納する値。文字列および整数値はそのままの形式で、 ... cache_replace ( $memcache_obj , "test_key" , "some variable" , false , 30 ); /* オブジェクト指向の API */ ... $memcache_obj -> replace ( "test_key" , "some variable" , false , 30 ); ?> 参考 Memcache::set() - デ ...
https://man.plustar.jp/php/memcache.replace.html - [similar]