検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 84 for Zend (0.008 sec.)
定義済み定数 12180
« リソース型 Uopz 関数 » PHP Manual uopz 定義済み定数 定義済み定数 以下の定数が定義されています。 ... des are defined as constants by uopz before 5.0.0: ZEND_EXIT ( int ) Invoked by exit() and die(), receives ... ts. Return boolean true to exit, false to continue ZEND_NEW ( int ) Invoked by object construction, receiv ... class of object being created as the only argument ZEND_THROW ( int ) Invoked by the throw construct, rece ... ass of exception being thrown as the only argument ZEND_FETCH_CLASS ( int ) Invoked upon composure, receiv ...
https://man.plustar.jp/php/uopz.constants.html - [similar]
PHP Callbacks 11963
« Basic FFI usage A Complete PHP/FFI/preloading Example » PHP Manual 例 PHP Callbacks PHP Callba ... type or to pass it as a function argument: <?php $zend = FFI :: cdef ( " typedef int (*zend_write_func_t) ... (const char *str, size_t str_length); extern zend_write_func_t zend_write; " ); echo "Hello World 1! ... \n" ; $orig_zend_write = clone $zend -> zend_write ; $zend -> zend_ ... write = function( $str , $len ) { global $orig_zend_write ; $orig_zend_write ( "{\n\t" , 3 ); $ret = $ ...
https://man.plustar.jp/php/ffi.examples-callback.html - [similar]
現在の Zend Engine のバージョンを取得する 11827
« zend_thread_id phpdbg » PHP Manual PHP オプション/情報 関数 現在の Zend Engine のバージョンを取 ... 得する zend_version (PHP 4, PHP 5, PHP 7, PHP 8) zend_version ... — 現在の Zend Engine のバージョンを取得する 説明 zend_version () ... : string 現在実行中の Zend Engine のバージョンを含む文字列を返します。 パラメ ... ータ この関数にはパラメータはありません。 戻り値 Zend Engine のバージョン番号を文字列で返します。 例 例1 ...
https://man.plustar.jp/php/function.zend-version.html - [similar]
現在のスレッドの一意な ID を返す 10351
« version_compare zend_version » PHP Manual PHP オプション/情報 関数 現在のスレッドの一意な ID を ... 返す zend_thread_id (PHP 5, PHP 7, PHP 8) zend_thread_id — 現 ... 在のスレッドの一意な ID を返す 説明 zend_thread_id (): int この関数は、現在のスレッドの一意 ... 戻り値 スレッドの ID を表す整数値を返します。 例 例1 zend_thread_id() の例 <?php $thread_id = zend_thread_id ... 注意 注意 : この関数が使用できるのは、PHP を ZTS (Zend Thread Safety) サポートつきのデバッグモード ( --en ...
https://man.plustar.jp/php/function.zend-thread-id.html - [similar]
mysqlndプラグインの開発をはじめよう 10269
« mysqlnd のプラグインAPI OCI8 » PHP Manual MySQL Native Driver プラグインAPI mysqlndプラグインの ... ザースペースへのプロキシメソッドを呼び出す (最適化 - zend_interface.h) ユーザースペースのオブジェクトメソッド ... は、 call_user_function() を使うか、 zend_call_method() を使って Zend Engine に近いレベルで操 ... 作を行うことができます。 最適化: C言語から zend_call_method を使ってメソッドを呼び出す 次に示すコー ... ドの断片は、 zend_call_method のプロトタイプを示しています。これは z ...
https://man.plustar.jp/php/mysqlnd.plugin.developing.html - [similar]
関数またはクラスのフラグを 取得/設定 する 8914
« uopz_extend uopz_function » PHP Manual Uopz 関数 関数またはクラスのフラグを 取得/設定 する uop ... クラスエントリのフラグを取得または設定します。 flags ZEND_ACC_ フラグの有効なセット。 省略された場合、 uopz_ ... ンより前は、 uopz_flags() を getter として使うために ZEND_ACC_FETCH を渡さなければなりませんでした。 例 例1 ... _dump ((bool) ( uopz_flags ( "Test" , "method" ) & ZEND_ACC_PRIVATE )); var_dump ((bool) ( uopz_flags ( "T ... est" , "method" ) & ZEND_ACC_STATIC )); var_dump ( uopz_flags ( "Test" , "m ...
https://man.plustar.jp/php/function.uopz-flags.html - [similar]
Basic FFI usage 8698
« 例 PHP Callbacks » PHP Manual 例 Basic FFI usage Basic FFI usage Before diving into the detail ... th C enums <?php $a = FFI :: cdef ( 'typedef enum _zend_ffi_symbol_kind { ZEND_FFI_SYM_TYPE, ZEND_FFI_SYM_ ... CONST = 2, ZEND_FFI_SYM_VAR, ZEND_FFI_SYM_FUNC } zend_ffi_symbol_k ... ind; ' ); var_dump ( $a -> ZEND_FFI_SYM_TYPE ); var_dump ( $a -> ZEND_FFI_SYM_CONS ... T ); var_dump ( $a -> ZEND_FFI_SYM_VAR ); ?> 上の例の出力は以下となります。 i ...
https://man.plustar.jp/php/ffi.examples-basic.html - [similar]
コア php.ini ディレクティブに関する説明 8535
« php.ini のセクション一覧 拡張モジュールの一覧/分類 » PHP Manual php.ini ディレクティブ コア ph ... eout "2" PHP_INI_SYSTEM PHP 7.1.0 以降で利用可能。 zend.exception_ignore_args "0" PHP_INI_ALL PHP 7.4.0 以 ... 降で利用可能。 zend.multibyte "0" PHP_INI_ALL zend.script_encoding NUL ... L PHP_INI_ALL zend.detect-unicode NULL PHP_INI_ALL zend.signal_check ... "0" PHP_INI_SYSTEM zend.assertions "1" PHP_INI_ALL (制限あり) zend.excepti ...
https://man.plustar.jp/php/ini.core.html - [similar]
Zend Engine のメモリーマネージャによって使用されたメモリーを再利用する 8481
« gc_enabled gc_status » PHP Manual PHP オプション/情報 関数 Zend Engine のメモリーマネージャによ ... 用する gc_mem_caches (PHP 7, PHP 8) gc_mem_caches — Zend Engine のメモリーマネージャによって使用されたメモリ ... ーを再利用する 説明 gc_mem_caches (): int Zend Engine のメモリーマネージャによって使用されたメモリ ... 参考 ガベージコレクション 関連キーワード: メモリー , Zend , マネージャ , 使用 , mem , caches , 関数 , パラメ ...
https://man.plustar.jp/php/function.gc-mem-caches.html - [similar]
はじめに 8007
« uopz インストール/設定 » PHP Manual uopz はじめに はじめに uopz (User Operations for Zend) エク ... ションは、 コンパイル時および実行時に通常使用される Zend Engine の機能を公開します。 その目的は、PHP コード ... す。 uopz は、以下のアクティビティをサポートします。 ZEND_EXIT および ZEND_NEW を含む一部のオペコードをオーバ ... 関数 , 変更 , クラス , Xdebug , グローバル , 削除 , ZEND ...
https://man.plustar.jp/php/intro.uopz.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 NEXT