検索

phrase: max: clip:
target: order:
Results of 131 - 140 of about 418 for Foo (0.011 sec.)
1 つ以上の文字列を出力する 4291
« crypt explode » PHP Manual String 関数 1 つ以上の文字列を出力する echo (PHP 4, PHP 5, PHP 7, P ... ort_open_tag が無効な場合でも使えます。 I have <?=$foo?> foo. print との主な違いは、 echo がリスト形式の引 ... 字列を生成するあらゆる式を指定することができます。 $foo = "example" ; echo "foo is $foo " ; // foo is exam ...
https://man.plustar.jp/php/function.echo.html - [similar]
文字列の最初の文字を小文字にする 4291
« join levenshtein » PHP Manual String 関数 文字列の最初の文字を小文字にする lcfirst (PHP 5 >= 5 ... 後の文字列を返します。 例 例1 lcfirst() の例 <?php $foo = 'HelloWorld' ; $foo = lcfirst ( $foo ); // hello ...
https://man.plustar.jp/php/function.lcfirst.html - [similar]
要素を追加する 4291
« sodium_crypto_box sodium_crypto_core_ristretto255_from_hash » PHP Manual Sodium 関数 要素を追加 ... sodium_crypto_core_ristretto255_add() の例 <?php $foo = sodium_crypto_core_ristretto255_random (); $bar ... ); $value = sodium_crypto_core_ristretto255_add ( $foo , $bar ); $value = sodium_crypto_core_ristretto255 ... _sub ( $value , $bar ); var_dump ( hash_equals ( $foo , $value )); ?> 上の例の出力は以下となります。 boo ...
https://man.plustar.jp/php/function.sodium-crypto-core-ristretto255-add.html - [similar]
スカラー値を反転させる 4291
« sodium_crypto_core_ristretto255_scalar_complement sodium_crypto_core_ristretto255_scalar_mul » ... ypto_core_ristretto255_scalar_invert() の例 <?php $foo = sodium_crypto_core_ristretto255_scalar_random () ... = sodium_crypto_core_ristretto255_scalar_invert ( $foo ); $reInverted = sodium_crypto_core_ristretto255_s ... ar_invert ( $inverted ); var_dump ( hash_equals ( $foo , $reInverted )); ?> 上の例の出力は以下となります。 ...
https://man.plustar.jp/php/function.sodium-crypto-core-ristretto255-scalar-inver... - [similar]
スカラー値の論理否定を行う 4291
« sodium_crypto_core_ristretto255_scalar_mul sodium_crypto_core_ristretto255_scalar_random » PHP ... ypto_core_ristretto255_scalar_negate() の例 <?php $foo = sodium_crypto_core_ristretto255_scalar_random () ... = sodium_crypto_core_ristretto255_scalar_negate ( $foo ); $reNegate = sodium_crypto_core_ristretto255_sca ... lar_negate ( $negate ); var_dump ( hash_equals ( $foo , $reNegate )); ?> 上の例の出力は以下となります。 ...
https://man.plustar.jp/php/function.sodium-crypto-core-ristretto255-scalar-negat... - [similar]
要素の値を減らす 4291
« sodium_crypto_core_ristretto255_scalar_sub sodium_crypto_generichash_final » PHP Manual Sodium ... sodium_crypto_core_ristretto255_sub() の例 <?php $foo = sodium_crypto_core_ristretto255_random (); $bar ... ); $value = sodium_crypto_core_ristretto255_add ( $foo , $bar ); $value = sodium_crypto_core_ristretto255 ... _sub ( $value , $bar ); var_dump ( hash_equals ( $foo , $value )); ?> 上の例の出力は以下となります。 boo ...
https://man.plustar.jp/php/function.sodium-crypto-core-ristretto255-sub.html - [similar]
bucket を brigade の先頭に追加する 4291
« stream_bucket_new stream_context_create » PHP Manual ストリーム 関数 bucket を brigade の先頭に ... ん。 例 例1 stream_bucket_prepend() の例 <?php class foo extends php_user_filter { protected $calls = 0 ; p ... S_FEED_ME ; } } stream_filter_register ( 'test' , 'foo' ); print file_get_contents ( 'php://filter/read=t ... est/resource=foo' ); ?> 関連キーワード: brigade , 先頭 , 追加 , str ...
https://man.plustar.jp/php/function.stream-bucket-prepend.html - [similar]
文字列の最初の文字を大文字にする 4291
« trim ucwords » PHP Manual String 関数 文字列の最初の文字を大文字にする ucfirst (PHP 4, PHP 5, ... 後の文字列を返します。 例 例1 ucfirst() の例 <?php $foo = 'hello world!' ; $foo = ucfirst ( $foo ); // Hel ...
https://man.plustar.jp/php/function.ucfirst.html - [similar]
例外をジェネレータにスローする 4291
« Generator::send Generator::valid » PHP Manual Generator 例外をジェネレータにスローする Generat ... レータへの例外のスロー <?php function gen () { echo "Foo\n" ; try { yield; } catch ( Exception $e ) { echo ... ion ( 'Test' )); ?> 上の例の出力は以下となります。 Foo Exception: Test Bar 関連キーワード: 例外 , スロー ... throw , exception , yield , 呼び出し , Exception , Foo , 出力 ...
https://man.plustar.jp/php/generator.throw.html - [similar]
クラスの抽象化 4291
« static キーワード オブジェクト インターフェイス » PHP Manual クラスとオブジェクト クラスの抽象 ... ss1 -> printOut (); echo $class1 -> prefixValue ( 'FOO_' ) . "\n" ; $class2 = new ConcreteClass2 ; $class ... 2 -> printOut (); echo $class2 -> prefixValue ( 'FOO_' ) . "\n" ; ?> 上の例の出力は以下となります。 Con ... creteClass1 FOO_ConcreteClass1 ConcreteClass2 FOO_ConcreteClass2 例 ...
https://man.plustar.jp/php/language.oop5.abstract.html - [similar]