検索

phrase: max: clip:
target: order:
Results of 121 - 130 of about 247 for bar (0.054 sec.)
座標が ristretto255 曲線上にあるかを調べる 4761
« sodium_crypto_core_ristretto255_from_hash sodium_crypto_core_ristretto255_random » PHP Manual ... sodium_crypto_core_ristretto255_scalar_random (); $bar = sodium_crypto_scalarmult_ristretto255_base ( $fo ... sodium_crypto_core_ristretto255_is_valid_point ( $bar )); ?> 上の例の出力は以下となります。 bool(true) 参 ...
https://man.plustar.jp/php/function.sodium-crypto-core-ristretto255-is-valid-poi... - [similar]
Lua 関数を呼び出す 4761
« Lua::assign Lua::__construct » PHP Manual Lua Lua 関数を呼び出す Lua::call Lua::__call (PECL l ... Lua (); $lua -> eval (<<<CODE function dummy(foo, bar) print(foo, ",", bar) end CODE ); $lua -> call ( " ...
https://man.plustar.jp/php/lua.call.html - [similar]
Deserialization from BSON 4761
« Serialization to BSON Security » PHP Manual Persisting Data Deserialization from BSON Deserial ... /* typemap: [] (all defaults) */ { "foo": "yes", "bar" : false } -> stdClass { $foo => 'yes', $bar => fa ... rray', 'document' => 'array' ] */ { "foo": "yes", "bar" : false } -> [ "foo" => "yes", "bar" => false ] { ...
https://man.plustar.jp/php/mongodb.persistence.deserialization.html - [similar]
メソッドのアクセス範囲を設定する 4761
« ReflectionMethod::isStatic ReflectionMethod::__toString » PHP Manual ReflectionMethod メソッド ... class MyClass { private function foo () { return 'bar' ; } } $method = new ReflectionMethod ( "MyClass" ... ?> 上の例の出力は、 たとえば以下のようになります。 bar Fatal error: Uncaught Error: Call to private metho ...
https://man.plustar.jp/php/reflectionmethod.setaccessible.html - [similar]
プロパティで宣言されたデフォルト値を返す 4761
« ReflectionProperty::getDeclaringClass ReflectionProperty::getDocComment » PHP Manual Reflectio ... ::getDefaultValue() の例 <?php class Foo { public $bar = 1 ; public ? int $baz ; public int $boing = 0 ; ... s ( Foo ::class); var_dump ( $ro -> getProperty ( 'bar' )-> getDefaultValue ()); var_dump ( $ro -> getPro ...
https://man.plustar.jp/php/reflectionproperty.getdefaultvalue.html - [similar]
プロパティがコンストラクタの引数から昇格したものかを調べる 4761
« ReflectionProperty::isPrivate ReflectionProperty::isProtected » PHP Manual ReflectionProperty ... public $baz ; public function __construct (public $bar ) {} } $o = new Foo ( 42 ); $o -> baz = 42 ; $ro = ... ionObject ( $o ); var_dump ( $ro -> getProperty ( 'bar' )-> isPromoted ()); var_dump ( $ro -> getProperty ...
https://man.plustar.jp/php/reflectionproperty.ispromoted.html - [similar]
プロパティのアクセス範囲を設定する 4761
« ReflectionProperty::isStatic ReflectionProperty::setValue » PHP Manual ReflectionProperty プロ ... 単なクラス定義 <?php class MyClass { private $foo = 'bar' ; } $property = new ReflectionProperty ( "MyClass ... ?> 上の例の出力は、 たとえば以下のようになります。 bar Fatal error: Uncaught Error: Cannot access private ...
https://man.plustar.jp/php/reflectionproperty.setaccessible.html - [similar]
リクエストをルーティングする 4761
« Yaf_Route_Static::match Yaf_Route_Supervar » PHP Manual Yaf_Route_Static リクエストをルーティン ... ault(index) Request: http://yourdomain.com/a/b/foo/bar/test/a/id/4 => module = default(index), controller ... = a, action = b, request parameters: foo = bar, test = a, id = 4 参考 Yaf_Route_Supervar::route() ...
https://man.plustar.jp/php/yaf-route-static.route.html - [similar]
The assignRef purpose 4761
« Yaf_View_Simple::assign Yaf_View_Simple::clear » PHP Manual Yaf_View_Simple The assignRef purp ... tract { public function indexAction () { $value = "bar" ; $this -> getView ()-> assign ( "foo" , $value ) ... 4 より前のバージョンにはバグがあり、 * この出力が "bar" になっていました */ $dummy = $this -> getView ()- ...
https://man.plustar.jp/php/yaf-view-simple.assignref.html - [similar]
指定された配列がリストかどうかをチェックする 4711
« array_intersect array_key_exists » PHP Manual 配列 関数 指定された配列がリストかどうかをチェッ ... でない場合 array_is_list ([ 0 => 'apple' , 'foo' => 'bar' ]); // false // 数値のキーが連続していない場合 ar ... ray_is_list ([ 0 => 'apple' , 2 => 'bar' ]); // false ?> 注意 注意 : この関数は、空の配列に ...
https://man.plustar.jp/php/function.array-is-list.html - [similar]