検索

phrase: max: clip:
target: order:
Results of 51 - 60 of about 2650 for 上の (0.014 sec.)
リンク先を取得する 3546
« SplFileInfo::getInode SplFileInfo::getMTime » PHP Manual SplFileInfo リンク先を取得する SplFil ... 先を取得します。 注意 : リンク先は、ファイルシステム上の実際のパスではないかもしれません。 SplFileInfo::getR ... ealPath() を使用して、ファイルシステム上の実際のパスを調べます。 パラメータ この関数にはパラメ ... get ()); var_dump ( $info -> getRealPath ()); } ?> 上の例の出力は、 たとえば以下のようになります。 string(1 ...
https://man.plustar.jp/php/splfileinfo.getlinktarget.html - [similar]
指定した日付/時刻の詳細な情報を連想配列で返す 3478
« date_parse_from_format date_sub » PHP Manual 日付・時刻 関数 指定した日付/時刻の詳細な情報を連 ... dump ( date_parse ( "2006-12-12 10:00:00.5" )); ?> 上の例の出力は以下となります。 array(12) { 'year' => int ... date_parse ( "June 2nd, 2022, 10:28:17 BST" )); ?> 上の例の出力は以下となります。 array(16) { 'year' => int ... ( "June 2nd, 2022, 10:28:17 Europe/London" )); ?> 上の例の出力は以下となります。 array(14) { 'year' => int ... hp var_dump ( date_parse ( "June 2nd, 2022" )); ?> 上の例の出力は以下となります。 array(12) { 'year' => int ...
https://man.plustar.jp/php/function.date-parse.html - [similar]
FreeType 2 によるフォントを用いてイメージにテキストを描画する 3478
« imageftbbox imagegammacorrect » PHP Manual GD および Image 関数 FreeType 2 によるフォントを用い ... ます。 imagestring() の場合は x と y で最初の文字の左上の角を指定しており、 たとえば "左上" は 0, 0 となります ... 左下の y 座標 2 右下の x 座標 3 右下の y 座標 4 右上の x 座標 5 右上の y 座標 6 左上の x 座標 7 左上の y ...
https://man.plustar.jp/php/function.imagefttext.html - [similar]
変数の文字列表現を出力または返す 3478
« var_dump ウェブサービス » PHP Manual 変数操作 関数 変数の文字列表現を出力または返す var_export ... array ( "a" , "b" , "c" )); var_export ( $a ); ?> 上の例の出力は以下となります。 array ( 0 => 1, 1 => 2, 2 ... 3.1 ; $v = var_export ( $b , true ); echo $v ; ?> 上の例の出力は以下となります。 3.1 例2 PHP 7.3.0 以降で ... //php.net/elephpant.php' ; var_export ( $person ); 上の例の出力は以下となります。 (object) array( 'name' => ... $a = new A ; $a -> var = 5 ; var_export ( $a ); ?> 上の例の出力は以下となります。 A::__set_state(array( 'va ...
https://man.plustar.jp/php/function.var-export.html - [similar]
配列の先頭から要素を一つ取り出す 3411
« array_search array_slice » PHP Manual 配列 関数 配列の先頭から要素を一つ取り出す array_shift ( ... t = array_shift ( $stack ); print_r ( $stack ); ?> 上の例の出力は以下となります。 Array ( [0] => banana [1] ... ange が代入されます。 参考 array_unshift() - 一つ以上の要素を配列の最初に加える array_push() - 一つ以上の...
https://man.plustar.jp/php/function.array-shift.html - [similar]
assertion が false であるかどうかを調べる 3411
« assert_options cli_get_process_title » PHP Manual PHP オプション/情報 関数 assertion が false ... ); assert ( '2 < 1' , 'Two is less than one' ); ?> 上の例の出力は以下となります。 Assertion failed at test. ... ); echo 'Hi!' ; ?> zend.assertions が 0 の場合は、上の例の結果は次のようになります。 Hi! zend.assertions が ... 1、かつ assert.exception が 0 の場合は、上の例の結果は次のようになります。 Warning: assert(): as ... ertions が 1、かつ assert.exception が 1 の場合は、上の例の結果は次のようになります。 Fatal error: Uncaught ...
https://man.plustar.jp/php/function.assert.html - [similar]
パラメータの配列を指定してコールバック関数をコールする 3411
« 関数処理 関数 call_user_func » PHP Manual 関数処理 関数 パラメータの配列を指定してコールバック ... ay( $foo , "bar" ), array( "three" , "four" )); ?> 上の例の出力は、 たとえば以下のようになります。 foobar g ... PACE__ . '\Foo' , 'test' ), array( 'Philip' )); ?> 上の例の出力は、 たとえば以下のようになります。 Hello Ha ... all_user_func_array ( $func , array( 2 , 4 ))); ?> 上の例の出力は以下となります。 int(8) 例4 値の参照渡し < ... array(& $bar )); echo "global \$bar= $bar \n" ; ?> 上の例の出力は以下となります。 function mega $a=55 globa ...
https://man.plustar.jp/php/function.call-user-func-array.html - [similar]
FTP サーバー上のファイルを削除する 3411
« ftp_connect ftp_exec » PHP Manual FTP 関数 FTP サーバー上のファイルを削除する ftp_delete (PHP ... 4, PHP 5, PHP 7, PHP 8) ftp_delete — FTP サーバー上のファイルを削除する 説明 ftp_delete ( FTP\Connection ...
https://man.plustar.jp/php/function.ftp-delete.html - [similar]
長方形を切り取り、画像として取得する 3411
« imagegd imagegetinterpolation » PHP Manual GD および Image 関数 長方形を切り取り、画像として取 ... 長方形の座標を配列で返し、 次のエントリを持ちます: 左上のx座標 左上のx座標 右下のx座標 右下のy座標 変更履歴 ... , 10 , 89 , 89 ); print_r ( imagegetclip ( $im )); 上の例の出力は以下となります。 Array ( [0] => 10 [1] => ...
https://man.plustar.jp/php/function.imagegetclip.html - [similar]
イテレータにある要素をカウントする 3411
« iterator_apply iterator_to_array » PHP Manual SPL 関数 イテレータにある要素をカウントする iter ... ' )); var_dump ( iterator_count ( $iterator )); ?> 上の例の出力は以下となります。 int(4) 例2 iterator_count ... erator )); var_dump ( $iterator -> current ()); ?> 上の例の出力は以下となります。 string(3) "one" int(3) NU ... ue (" , iterator_count ( $iterator ), ")\n" ; } ?> 上の例の出力は以下となります。 0: one (3) 関連キーワード ...
https://man.plustar.jp/php/function.iterator-count.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 NEXT