Results of 11 - 20 of about 88 for obj (0.009 sec.)
- サーバー上のすべての既存項目を消去する 7841
- « Memcache::delete Memcache::get » PHP Manual Memcache サーバー上のすべての既存項目を消去する Me
...
:flush() の例 <?php /* 手続き型の API */ $memcache_obj = memcache_connect ( 'memcache_host' , 11211 ); me ...
mcache_flush ( $memcache_obj ); /* オブジェクト指向の API */ $memcache_obj = ne ...
w Memcache ; $memcache_obj -> connect ( 'memcache_host' , 11211 ); $memcache_ ...
-
https://man.plustar.jp/php/memcache.flush.html
- [similar]
- プロパティが定義されているかどうかを調べる 7841
- « ReflectionClass::hasMethod ReflectionClass::implementsInterface » PHP Manual ReflectionClass プ
...
oo { public $p1 ; protected $p2 ; private $p3 ; } $obj = new ReflectionObject (new Foo ()); var_dump ( $o ...
bj -> hasProperty ( "p1" )); var_dump ( $obj -> hasProperty ( "p2" )); var_dump ( $obj -> hasPr ...
operty ( "p3" )); var_dump ( $obj -> hasProperty ( "p4" )); ?> 上の例の出力は、 たと ...
-
https://man.plustar.jp/php/reflectionclass.hasproperty.html
- [similar]
- Determines whether an object is equal to the current instance 7788
- « Hashable Ds\Hashable::hash » PHP Manual Hashable Determines whether an object is equal to the
...
1.0.0) Ds\Hashable::equals — Determines whether an object is equal to the current instance 説明 abstract ...
public Ds\Hashable::equals ( object $obj ): bool Determines whether another object ...
equal to the current instance. This method allows objects to be used as keys in structures such as Ds\Ma ...
honors this interface. 注意 : It's guaranteed that obj is an instance of the same class. 警告 It's import ...
-
https://man.plustar.jp/php/ds-hashable.equals.html
- [similar]
- memcached サーバーとの接続を閉じる 7788
- « Memcache::addServer Memcache::connect » PHP Manual Memcache memcached サーバーとの接続を閉じる
...
:close() の例 <?php /* 手続き型の API */ $memcache_obj = memcache_connect ( 'memcache_host' , 11211 ); /* ...
こで何かを行います .. */ memcache_close ( $memcache_obj ); /* オブジェクト指向の API */ $memcache_obj = ne ...
w Memcache ; $memcache_obj -> connect ( 'memcache_host' , 11211 ); /* ここで何 ...
かを行います .. */ $memcache_obj -> close (); ?> 参考 Memcache::connect() - memcach ...
-
https://man.plustar.jp/php/memcache.close.html
- [similar]
- 大きな値に対する自動圧縮処理を有効にする 7734
- « Memcache::set Memcache::setServerParams » PHP Manual Memcache 大きな値に対する自動圧縮処理を有
...
の例 <?php /* オブジェクト指向の API */ $memcache_obj = new Memcache ; $memcache_obj -> addServer ( 'mem ...
cache_host' , 11211 ); $memcache_obj -> setCompressThreshold ( 20000 , 0.2 ); /* 手続き ...
型の API */ $memcache_obj = memcache_connect ( 'memcache_host' , 11211 ); me ...
mcache_set_compress_threshold ( $memcache_obj , 20000 , 0.2 ); ?> 関連キーワード: 圧縮 , 自動 , ...
-
https://man.plustar.jp/php/memcache.setcompressthreshold.html
- [similar]
- データをサーバーに格納する 7680
- « Memcache::replace Memcache::setCompressThreshold » PHP Manual Memcache データをサーバーに格納す
...
*/ /* memcached サーバーに接続します */ $memcache_obj = memcache_connect ( 'memcache_host' , 11211 ); /* ...
有効期限は 30 秒です。 */ memcache_set ( $memcache_obj , 'var_key' , 'some variable' , 0 , 30 ); echo mem ...
cache_get ( $memcache_obj , 'var_key' ); ?> 例2 Memcache::set() の例 <?php / ...
* オブジェクト指向の API */ $memcache_obj = new Memcache ; /* memcached サーバーに接続します ...
-
https://man.plustar.jp/php/memcache.set.html
- [similar]
- 名前空間の使用法: エイリアス/インポート 7627
- « namespace キーワードおよび __NAMESPACE__ 定数 グローバル空間 » PHP Manual 名前空間 名前空間の使
...
e ; // グローバルクラスをインポートします use ArrayObject ; // 関数をインポートします use function My \ F ...
をインポートします use const My \ Full \ CONSTANT ; $obj = new namespace\ Another ; // foo\Another クラスの ...
オブジェクトのインスタンスを作成します $obj = new Another ; // My\Full\Classname クラスのオブジ ...
NSname\subns\func 関数をコールします $a = new ArrayObject (array( 1 )); // ArrayObject クラスのオブジェク ...
-
https://man.plustar.jp/php/language.namespaces.importing.html
- [similar]
- Register a server 7627
- « Yar_Server Yar_Server::handle » PHP Manual Yar_Server Register a server Yar_Server::__construc
...
server 説明 final public Yar_Server::__construct ( Object $obj ) Set up a Yar HTTP RPC Server, All the pu ...
blic methods of $obj will be register as a RPC service. パラメータ obj ...
An Object, all public methods of its will be registered a ...
ード: Server , Yar , Register , server , construct , obj , public , An , Object , handle ...
-
https://man.plustar.jp/php/yar-server.construct.html
- [similar]
- サーバーから項目を削除する 7573
- « Memcache::decrement Memcache::flush » PHP Manual Memcache サーバーから項目を削除する Memcache:
...
delete() の例 <?php /* 手続き型の API */ $memcache_obj = memcache_connect ( 'memcache_host' , 11211 ); /* ...
ーバーから削除します */ memcache_delete ( $memcache_obj , 'key_to_delete' ); /* オブジェクト指向の API */ ...
$memcache_obj = new Memcache ; $memcache_obj -> connect ( 'memca ...
che_host' , 11211 ); $memcache_obj -> delete ( 'key_to_delete' ); ?> 参考 Memcache::s ...
-
https://man.plustar.jp/php/memcache.delete.html
- [similar]
- 項目の値を増やす 7573
- « Memcache::getVersion Memcache::pconnect » PHP Manual Memcache 項目の値を増やす Memcache::incre
...
rement() の例 <?php /* 手続き型の API */ $memcache_obj = memcache_connect ( 'memcache_host' , 11211 ); /* ...
*/ $current_value = memcache_increment ( $memcache_obj , 'counter' , 2 ); /* オブジェクト指向の API */ $m ...
emcache_obj = new Memcache ; $memcache_obj -> connect ( 'memca ...
ウンタを 3 増やします */ $current_value = $memcache_obj -> increment ( 'counter' , 3 ); ?> 参考 Memcache:: ...
-
https://man.plustar.jp/php/memcache.increment.html
- [similar]