検索

phrase: max: clip:
target: order:
Results of 51 - 60 of about 176 for o (0.066 sec.)
指定したマスク内に含まれる文字からなる文字列の最初のセグメントの長さを探す 5728
« strrpos strstr » PHP Manual String 関数 指定したマスク内に含まれる文字からなる文字列の最初のセ ... trspn ( string $string , string $characters , int $offset = 0 , ? int $length = null ): int string の中 ... s 内の文字 だけ を含む最初の部分の長さを返します。 offset と length を省略した場合は、 string 全体を調べ ... ます。 指定した場合は、 strspn(substr($string, $offset, $length), $characters) をコールするのと同じ動 ... たとえば、 <?php $var = strspn ( "42 is the answer to the 128th question." , "1234567890" ); ?> このコー ...
https://man.plustar.jp/php/function.strspn.html - [similar]
ストレージの文字列表現をアンシリアライズする 5728
« SplObjectStorage::setInfo SplObjectStorage::valid » PHP Manual SplObjectStorage ストレージの文 ... 字列表現をアンシリアライズする SplObjectStorage::unserialize (PHP 5 >= 5.2.2, PHP 7, P ... HP 8) SplObjectStorage::unserialize — ストレージの文字列表現を ... アンシリアライズする 説明 public SplObjectStorage::unserialize ( string $data ): void ス ... アライズしたもの。 戻り値 値を返しません。 例 例1 SplObjectStorage::unserialize() の例 <?php $s1 = new Sp ...
https://man.plustar.jp/php/splobjectstorage.unserialize.html - [similar]
LDAP コントロール 5672
« 基本的な使用法 LDAP 関数 » PHP Manual 例 LDAP コントロール LDAP コントロール PHP >= 7.3.0 で L ... DAPコントロールを使う例をいくつか示します。 例1 policy(パスワードポリシー) 情報とバインドする <?php $ ... user = 'cn=admin,dc=example,dc=com' ; $passwd = 'adminpassword' ; $ds = ldap_connect ... ( 'ldap://localhost' ); if ( $ds ) { $r = ldap_bind_ext ( $ds , ... $user , $passwd , [[ 'oid' => LDAP_CONTROL_PASSWORDPOLICYREQUEST ]]); if ( ...
https://man.plustar.jp/php/ldap.examples-controls.html - [similar]
The GearmanWorker class 5616
« GearmanTask::uuid GearmanWorker::addFunction » PHP Manual Gearman The GearmanWorker class The ... GearmanWorker class (PECL gearman >= 0.5.0) はじめに クラス概 ... 要 class GearmanWorker { /* メソッド */ public addFunction ( string $ ... function_name , callable $function , mixed &$context = ? , ... int $timeout = ? ): bool public addOptions ( int $option ): b ...
https://man.plustar.jp/php/class.gearmanworker.html - [similar]
The GearmanClient class 5560
« Basic Gearman client and worker, submitting tasks GearmanClient::addOptions » PHP Manual Gearm ... ECL gearman >= 0.5.0) はじめに Represents a class for connecting to a Gearman job server and making req ... uests to perform some function on provided data. The functi ... on performed must be one registered by a Gearman worker and ... the data passed is opaque to the job server. クラス概要 class GearmanCl ...
https://man.plustar.jp/php/class.gearmanclient.html - [similar]
拡張 5560
« 例 Reflection » PHP Manual リフレクション 拡張 拡張 組み込みクラスの特別なバージョンを作成した ... 組み込みクラスを拡張する <?php /** * 独自の Reflection_Method クラス */ class My_Reflection_Method exten ... ds ReflectionMethod { public $visibility = array(); public func ... tion __construct ( $o , $m ) { parent :: __construct ( ... $o , $m ); $this -> visibility = Reflection :: getMod ...
https://man.plustar.jp/php/reflection.extending.html - [similar]
ソケットのブロッキングモードを設定する 5516
« socket_sendto socket_set_nonblock » PHP Manual ソケット 関数 ソケットのブロッキングモードを設定 ... する socket_set_block (PHP 4 >= 4.2.0, PHP 5, PHP 7, PHP 8 ... ) socket_set_block — ソケットのブロッキングモードを設定 ... する 説明 socket_set_block ( Socket $socket ): bool socket_set_ ... block() 関数は、 socket パラメータで指定したソケットか ...
https://man.plustar.jp/php/function.socket-set-block.html - [similar]
ソケットリソースを非ブロックモードに設定する 5460
« socket_set_block socket_set_option » PHP Manual ソケット 関数 ソケットリソースを非ブロックモー ... ドに設定する socket_set_nonblock (PHP 4 >= 4.1.0, PHP 5, PHP 7, PH ... P 8) socket_set_nonblock — ソケットリソースを非ブロックモー ... ドに設定する 説明 socket_set_nonblock ( Socket $socket ): bool socket_s ... et_nonblock() 関数は、 socket パラメータで指定したソケッ ...
https://man.plustar.jp/php/function.socket-set-nonblock.html - [similar]
中に含むオブジェクトの一意な識別子を算出する 5460
« SplObjectStorage::detach SplObjectStorage::getInfo » PHP Manual SplObjectStorage 中に含むオブジ ... ェクトの一意な識別子を算出する SplObjectStorage::getHash (PHP 5 >= 5.4.0, PHP 7, PHP 8 ... ) SplObjectStorage::getHash — 中に含むオブジェクトの一意な ... 識別子を算出する 説明 public SplObjectStorage::getHash ( object $object ): string こ ... のメソッドは、 SplObjectStorage オブジェクトに追加されたオブジェクトの ...
https://man.plustar.jp/php/splobjectstorage.gethash.html - [similar]
CSR の subject を返す 5404
« openssl_csr_get_public_key openssl_csr_new » PHP Manual OpenSSL 関数 CSR の subject を返す ope ... ssl_csr_get_subject (PHP 5 >= 5.2.0, PHP 7, PHP 8) openssl_csr_get_subject — CSR の subject を返す 説明 ... openssl_csr_get_subject ( OpenSSLCertificateSigningR ... equest | string $csr , bool $short_names = true ): array | false openssl_csr ... エンコードされた subject の識別名の情報を返します。 commonName (CN), organizationName (O), countryName (C ...
https://man.plustar.jp/php/function.openssl-csr-get-subject.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 NEXT