検索

phrase: max: clip:
target: order:
Results of 131 - 140 of about 2650 for 上の (0.022 sec.)
Delete a function 2941
« uopz_del_function uopz_extend » PHP Manual Uopz 関数 Delete a function uopz_delete (PECL uopz ... te ( "strlen" ); echo strlen ( "Hello World" ); ?> 上の例の出力は、 たとえば以下のようになります。 PHP Fata ... strlen" ); echo My :: strlen ( "Hello World" ); ?> 上の例の出力は、 たとえば以下のようになります。 PHP Fata ...
https://man.plustar.jp/php/function.uopz-delete.html - [similar]
Creates a function at runtime 2941
« uopz_flags uopz_get_exit_status » PHP Manual Uopz 関数 Creates a function at runtime uopz_func ... ( $arg ); }); echo my_strlen ( "Hello World" ); ?> 上の例の出力は以下となります。 11 例2 uopz_function() cl ... _STATIC ); echo My :: strlen ( "Hello World" ); ?> 上の例の出力は以下となります。 11 関連キーワード: functi ...
https://man.plustar.jp/php/function.uopz-function.html - [similar]
Rename a function at runtime 2941
« uopz_redefine uopz_restore » PHP Manual Uopz 関数 Rename a function at runtime uopz_rename (PE ... len" ); echo original_strlen ( "Hello World" ); ?> 上の例の出力は以下となります。 11 例2 uopz_rename() clas ... ; echo My :: original_strlen ( "Hello World" ); ?> 上の例の出力は以下となります。 11 関連キーワード: functi ...
https://man.plustar.jp/php/function.uopz-rename.html - [similar]
新しいオブジェクトを生成する際に、クラスの代わりにモックを使う 2941
« uopz_set_hook uopz_set_property » PHP Manual Uopz 関数 新しいオブジェクトを生成する際に、クラス ... ( A ::class, mockA ::class); (new A )-> who (); ?> 上の例の出力は以下となります。 mockA 例2 uopz_set_mock() ... ho () { echo "mockA" ; } }); (new A )-> who (); ?> 上の例の出力は以下となります。 mockA 例3 uopz_set_mock() ... ; } }); echo A :: CON , PHP_EOL ; A :: who (); ?> 上の例の出力は以下となります。 A A Output of the above e ...
https://man.plustar.jp/php/function.uopz-set-mock.html - [similar]
遅延静的束縛 (Late Static Bindings) 2941
« オブジェクトの比較 オブジェクトと参照 » PHP Manual クラスとオブジェクト 遅延静的束縛 (Late Sta ... ion who () { echo __CLASS__ ; } } B :: test (); ?> 上の例の出力は以下となります。 A 遅延静的束縛の使用法 遅 ... ion who () { echo __CLASS__ ; } } B :: test (); ?> 上の例の出力は以下となります。 B 注意 : 静的でないコンテ ... test (); $c = new C (); $c -> test (); //fails ?> 上の例の出力は以下となります。 success! success! success ... () { echo __CLASS__ . "\n" ; } } C :: test (); ?> 上の例の出力は以下となります。 A C C 関連キーワード: 束縛 ...
https://man.plustar.jp/php/language.oop5.late-static-bindings.html - [similar]
PHP 7.2.x で推奨されなくなる機能 2941
« 下位互換性のない変更点 その他の変更 » PHP Manual PHP 7.1.x から PHP 7.2.x への移行 PHP 7.2.x で ... al() 関数のラッパーなので) この関数にはセキュリティ上の問題があるため、非推奨になりました。 好ましい代替は ... になった環境で使われる、文字列ベースの関数の相互運用上の問題により、この設定は非推奨になりました。 (unset) キ ... ボルテーブルを収集してしまいます。 これはセキュリティ上の問題があるため、2番目の引数を指定しないで parse_str( ... よりもループが遅く、PHPそのものの変更に伴って 実装上の問題を引き起こしたことから、非推奨になりました。 ass ...
https://man.plustar.jp/php/migration72.deprecated.html - [similar]
ストアドプロシージャ 2941
« プリペアドステートメント 複数のステートメント » PHP Manual クイックスタートガイド ストアドプロ ... OM test" ); var_dump ( $result -> fetch_assoc ()); 上の例の出力は以下となります。 array(1) { ["id"]=> strin ... $result -> fetch_assoc (); echo $row [ '_p_out' ]; 上の例の出力は以下となります。 Hi! アプリケーションやフレ ... > free (); } } while ( $mysqli -> next_result ()); 上の例の出力は以下となります。 --- array(3) { [0]=> arra ... -> free (); } } while ( $stmt -> next_result ()); 上の例の出力は以下となります。 --- array(3) { [0]=> arra ...
https://man.plustar.jp/php/mysqli.quickstart.stored-procedures.html - [similar]
間隔をフォーマットする 2873
« DateInterval::createFromDateString DatePeriod » PHP Manual DateInterval 間隔をフォーマットする ... H8M' ); echo $interval -> format ( '%d days' ); ?> 上の例の出力は以下となります。 4 days 例2 DateInterval で ... 32D' ); echo $interval -> format ( '%d days' ); ?> 上の例の出力は以下となります。 32 days 例3 DateInterval ... ho $interval -> format ( '%m month, %d days' ); ?> 上の例の出力は以下となります。 31 total days 1 month, 0 ...
https://man.plustar.jp/php/dateinterval.format.html - [similar]
Returns the value at a given index 2873
« Ds\Deque::first Ds\Deque::insert » PHP Manual Deque Returns the value at a given index Ds\Dequ ... -> get ( 1 )); var_dump ( $deque -> get ( 2 )); ?> 上の例の出力は、 たとえば以下のようになります。 string(1 ... dump ( $deque [ 1 ]); var_dump ( $deque [ 2 ]); ?> 上の例の出力は、 たとえば以下のようになります。 string(1 ...
https://man.plustar.jp/php/ds-deque.get.html - [similar]
Updates a value at a given index 2873
« Ds\Deque::rotate Ds\Deque::shift » PHP Manual Deque Updates a value at a given index Ds\Deque: ... $deque -> set ( 1 , "_" ); print_r ( $deque ); ?> 上の例の出力は、 たとえば以下のようになります。 Ds\Deque ... c" ]); $deque [ 1 ] = "_" ; print_r ( $deque ); ?> 上の例の出力は、 たとえば以下のようになります。 Ds\Deque ...
https://man.plustar.jp/php/ds-deque.set.html - [similar]