Results of 1 - 10 of about 52 for CData (0.006 sec.)
- Main interface to C code and data 11440
- « A Complete PHP/FFI/preloading Example FFI::addr » PHP Manual FFI Main interface to C code and
...
stance. Declared C types can be used to create new C data structures using FFI::new() and FFI::type() . FFI ...
lass FFI { /* メソッド */ public static addr ( FFI\CData &$ptr ): FFI\CData public static alignof ( FFI\CDa ...
ublic static cast ( FFI\CType | string $type , FFI\CData | int | float | bool | null &$ptr ): ? FFI\CData p ...
ublic cast ( FFI\CType | string $type , FFI\CData | int | float | bool | null &$ptr ): ? FFI\CData p ...
-
https://man.plustar.jp/php/class.ffi.html
- [similar]
- CDATA タグ全体を書き込む 11141
- « XMLWriter::writeAttributeNs XMLWriter::writeComment » PHP Manual XMLWriter CDATA タグ全体を書き
...
込む XMLWriter::writeCdata xmlwriter_write_cdata (PHP 5 >= 5.1.2, PHP 7, PHP ...
8, PECL xmlwriter >= 0.1.0) XMLWriter::writeCdata -- xmlwriter_write_cdata — CDATA タグ全体を書き込む ...
説明 オブジェクト指向型 public XMLWriter::writeCdata ( string $content ): bool 手続き型 xmlwriter_write ...
_cdata ( XMLWriter $writer , string $content ): bool CDAT ...
-
https://man.plustar.jp/php/xmlwriter.writecdata.html
- [similar]
- C Data Handles 11052
- « FFI::typeof FFI\CType » PHP Manual FFI C Data Handles C Data Handles (PHP 7 >= 7.4.0, PHP 8) は
...
じめに FFI\CData objects can be used in a number of ways as a regul ...
ar PHP data: C data of scalar types can be read and assigned via the ...
$cdata property, e.g. $x = FFI::new('int'); $x->cdata = 4 ...
be accessed as regular PHP object property, e.g. $cdata->field C array elements can be accessed as regular ...
-
https://man.plustar.jp/php/class.ffi-cdata.html
- [similar]
- Gets the FFI\CType of FFI\CData 10708
- « FFI::type FFI\CData » PHP Manual FFI Gets the FFI\CType of FFI\CData FFI::typeof (PHP 7 >= 7.4
...
.0, PHP 8) FFI::typeof — Gets the FFI\CType of FFI\CData 説明 public static FFI::typeof ( FFI\CData &$ptr ) ...
Type object representing the type of the given FFI\CData object. パラメータ ptr The handle of the pointer t ...
o a C data structure. 戻り値 Returns the FFI\CType object re ...
presenting the type of the given FFI\CData object. 関連キーワード: CData , CType , the , of , ...
-
https://man.plustar.jp/php/ffi.typeof.html
- [similar]
- Checks whether a FFI\CData is a null pointer 10200
- « FFI::free FFI::load » PHP Manual FFI Checks whether a FFI\CData is a null pointer FFI::isNull
...
= 7.4.0, PHP 8) FFI::isNull — Checks whether a FFI\CData is a null pointer 説明 public static FFI::isNull ( ...
FFI\CData &$ptr ): bool Checks whether a FFI\CData is a null ...
ter. パラメータ ptr The handle of the pointer to a C data structure. 戻り値 Returns whether a FFI\CData is ...
a null pointer. 関連キーワード: CData , whether , Checks , a , isNull , ptr , free , loa ...
-
https://man.plustar.jp/php/ffi.isnull.html
- [similar]
- 現在の CDATA を終了する 9976
- « XMLWriter::endAttribute XMLWriter::endComment » PHP Manual XMLWriter 現在の CDATA を終了する X
...
MLWriter::endCdata xmlwriter_end_cdata (PHP 5 >= 5.1.2, PHP 7, PHP 8, ...
PECL xmlwriter >= 0.1.0) XMLWriter::endCdata -- xmlwriter_end_cdata — 現在の CDATA を終了する 説 ...
明 オブジェクト指向型 public XMLWriter::endCdata (): bool 手続き型 xmlwriter_end_cdata ( XMLWriter ...
$writer ): bool 現在の CDATA セクションを終了します。 パラメータ writer 手続き型 ...
-
https://man.plustar.jp/php/xmlwriter.endcdata.html
- [similar]
- CDATA の開始タグを作成する 9976
- « XMLWriter::startAttributeNs XMLWriter::startComment » PHP Manual XMLWriter CDATA の開始タグを作
...
成する XMLWriter::startCdata xmlwriter_start_cdata (PHP 5 >= 5.1.2, PHP 7, PHP ...
8, PECL xmlwriter >= 0.1.0) XMLWriter::startCdata -- xmlwriter_start_cdata — CDATA の開始タグを作成す ...
る 説明 オブジェクト指向型 public XMLWriter::startCdata (): bool 手続き型 xmlwriter_start_cdata ( XMLWrite ...
r $writer ): bool CDATA を開始します。 パラメータ writer 手続き型のコールで ...
-
https://man.plustar.jp/php/xmlwriter.startcdata.html
- [similar]
- Performs a C type cast 9349
- « FFI::arrayType FFI::cdef » PHP Manual FFI Performs a C type cast FFI::cast (PHP 7 >= 7.4.0, PH
...
static FFI::cast ( FFI\CType | string $type , FFI\CData | int | float | bool | null &$ptr ): ? FFI\CData p ...
ublic FFI::cast ( FFI\CType | string $type , FFI\CData | int | float | bool | null &$ptr ): ? FFI\CData F ...
FI::cast() creates a new FFI\CData object, that references the same C data structure, ...
ferent type. The resulting object does not own the C data, and the source ptr must survive the result. The ...
-
https://man.plustar.jp/php/ffi.cast.html
- [similar]
- 単純な XML ドキュメントの作成 8961
- « 例 XML 名前空間の使用 » PHP Manual 例 単純な XML ドキュメントの作成 単純な XML ドキュメントの作
...
// tag11 xmlwriter_end_element ( $xw ); // tag1 // CDATA xmlwriter_start_element ( $xw , 'testc' ); xmlwrit ...
er_write_cdata ( $xw , "This is cdata content" ); xmlwriter_end_e ...
r_start_element ( $xw , 'testc' ); xmlwriter_start_cdata ( $xw ); xmlwriter_text ( $xw , "test cdata2" ); x ...
mlwriter_end_cdata ( $xw ); xmlwriter_end_element ( $xw ); // testc / ...
-
https://man.plustar.jp/php/example.xmlwriter-simple.html
- [similar]
- Creates an unmanaged pointer to C data 8916
- « FFI FFI::alignof » PHP Manual FFI Creates an unmanaged pointer to C data FFI::addr (PHP 7 >= 7
...
PHP 8) FFI::addr — Creates an unmanaged pointer to C data 説明 public static FFI::addr ( FFI\CData &$ptr ): ...
FFI\CData Creates an unmanaged pointer to the C data represe ...
nted by the given FFI\CData . The source ptr must survive the resulting pointe ...
ter. パラメータ ptr The handle of the pointer to a C data structure. 戻り値 Returns the freshly created FFI ...
-
https://man.plustar.jp/php/ffi.addr.html
- [similar]