検索

phrase: max: clip:
target: order:
Results of 741 - 750 of about 1267 for Value (0.052 sec.)
PHP と HTML 2521
« パスワードのハッシュ PHP と COM » PHP Manual FAQ PHP と HTML PHP と HTML PHP と HTML は深く関係 ... ML の hidden 要素 <?php echo '<input type="hidden" value="' . htmlspecialchars ( $data ) . '" />' . "\n" ; ... する必要があります。 なぜなら、この URL は HTML の value 属性として扱われるからです。 この場合は、ブラウザは ... を配列として扱うように 知らせることができ、各項目の value の値は配列の要素として var[] に 追加されます。最初 ... 要素に要素名を使って(訳注: document.myform.myelement.value 等の様に)アクセスしようとすると、 要素名に含まれる ...
https://man.plustar.jp/php/faq.html.html - [similar]
Move the cursor of a lob object 2521
« cubrid_lob2_seek64 cubrid_lob2_size64 » PHP Manual CUBRID 関数 Move the cursor of a lob object ... to move the cursor position of a lob object by the value set in the offset argument, to the direction set i ... beginning. In this case, offset must be a positive value. If you use CUBRID_CURSOR_CURRENT for origin , you ... cursor. origin This parameter can be the following values: CUBRID_CURSOR_FIRST: move forward from the first ... q = cubrid_prepare ( $conn , "INSERT INTO test_lob VALUES(2, ?)" ); $lob = cubrid_lob2_new ( $conn , 'CLOB' ...
https://man.plustar.jp/php/function.cubrid-lob2-seek.html - [similar]
Open a persistent connection to a CUBRID server 2521
« cubrid_pconnect_with_url cubrid_prepare » PHP Manual CUBRID 関数 Open a persistent connection ... meter ( $conn ); while (list( $param_name , $param_value ) = each ( $db_params )) { printf ( "%-30s %s\n" , ... $param_name , $param_value ); } printf ( "\n" ); $server_info = cubrid_get_se ...
https://man.plustar.jp/php/function.cubrid-pconnect.html - [similar]
クラスのデフォルトプロパティを取得する 2521
« get_class_methods get_class » PHP Manual クラス/オブジェクト関数 クラスのデフォルトプロパティを ... ( $my_class )); foreach ( $class_vars as $name => $value ) { echo " $name : $value \n" ; } ?> 上の例の出力は ...
https://man.plustar.jp/php/function.get-class-vars.html - [similar]
URL を解釈し、その構成要素を返す 2521
« http_build_query rawurldecode » PHP Manual URL 関数 URL を解釈し、その構成要素を返す parse_url ... = 'http://username:password@hostname:9090/path?arg=value#anchor' ; var_dump ( parse_url ( $url )); var_dump ... h"]=> string(5) "/path" ["query"]=> string(9) "arg=value" ["fragment"]=> string(6) "anchor" } string(4) "ht ... stname" int(9090) string(5) "/path" string(9) "arg=value" string(6) "anchor" 例2 parse_url() でスキームを省 ...
https://man.plustar.jp/php/function.parse-url.html - [similar]
フィールドが SQL の NULL かどうか調べる 2521
« pg_fetch_row pg_field_name » PHP Manual PostgreSQL 関数 フィールドが SQL の NULL かどうか調べる ... d_is_null ( $res , 0 , "year" ) == 1 ) { echo "The value of the field year is null.\n" ; } if ( pg_field_is ... _null ( $res , 0 , "year" ) == 0 ) { echo "The value of the field year is not null.\n" ; } } ?> 関連キー ...
https://man.plustar.jp/php/function.pg-field-is-null.html - [similar]
ユーザー定義の比較関数を用いて、キーで配列をソートする 2521
« uasort usort » PHP Manual 配列 関数 ユーザー定義の比較関数を用いて、キーで配列をソートする uks ... ); uksort ( $a , "cmp" ); foreach ( $a as $key => $value ) { echo " $key : $value \n" ; } ?> 上の例の出力は ...
https://man.plustar.jp/php/function.uksort.html - [similar]
拡張属性を設定する 2521
« xattr_remove xattr_supported » PHP Manual xattr 関数 拡張属性を設定する xattr_set (PECL xattr ... tr_set ( string $filename , string $name , string $value , int $flags = 0 ): bool この関数は、ファイルの拡張 ... は、 flags パラメータを使用することで変更可能です。 value 属性の値。 flags サポートされる xattr のフラグ XAT ...
https://man.plustar.jp/php/function.xattr-set.html - [similar]
ImagickPixel のコンストラクタ 2521
« ImagickPixel::clear ImagickPixel::destroy » PHP Manual ImagickPixel ImagickPixel のコンストラク ... 0, 0, 1.0)" , // the same, with an explicit alpha value "rgb(100%, 0%, 0%)" , // range 0.0% - 100.0% "rgba ... %, 0%, 1.0)" , // the same, with an explicit alpha value ); $draw = new \ ImagickDraw (); $count = 0 ; $bla ...
https://man.plustar.jp/php/imagickpixel.construct.html - [similar]
オブジェクト定数 2521
« プロパティ クラスのオートローディング » PHP Manual クラスとオブジェクト オブジェクト定数 オブジ ... 用 <?php class MyClass { const CONSTANT = 'constant value' ; function showConstant () { echo self :: CONSTAN ... THREE = ONE + self :: TWO ; const SENTENCE = 'The value of THREE is ' . self :: THREE ; } ?> 例4 PHP 7.1.0 ...
https://man.plustar.jp/php/language.oop5.constants.html - [similar]