App下載

詞條

大約有 4,000 項符合查詢結果 ,庫內數(shù)據(jù)總量為 78,409 項。(搜索耗時:0.0041秒)

1231.PHP8 Zip 上下文選項

... password 用于指定加密歸檔的密碼。 更新日志 版本 說明 PHP 7.2.0, PECL zip 1.14.0 添加 password。 示例 示例 #1 基礎 password 用法示例 <?php // 讀取加密歸檔 $opts = array( 'zip' => array( 'password' => 'secret', ), ); // 創(chuàng)建上下文... $context = str...

http://m.o2fo.com/phpchinese/zip-context-options.html

1232.PHP8 FFI::addr — 創(chuàng)建指向 C 數(shù)據(jù)的非托管指針

(PHP 7 >= 7.4.0, PHP 8)FFI::addr — 創(chuàng)建指向 C 數(shù)據(jù)的非托管指針說明public static FFI::addr(FFI\CData &$ptr): FFI\CData創(chuàng)建一個指向由給定 FFI\CData 表示的 C 數(shù)據(jù)的非托管指針。源 ptr 必須在結果指針之后繼續(xù)存在。該函數(shù)主要用于通過指針向 ...

http://m.o2fo.com/phpchinese/php8-ffi-addr.html

1233.PHP8 FFI::alignof — 獲取對齊方式

(PHP 7 >= 7.4.0, PHP 8)FFI::alignof — 獲取對齊方式說明public static FFI::alignof(FFI\CData|FFI\CType &$ptr): int獲取給定 FFI\CData 或 FFI\CType 對象的對齊方式。參數(shù)ptrC 數(shù)據(jù)或類型的句柄。返回值返回給定 FFI\CData 或 FFI\CType 對象的對齊方式。

http://m.o2fo.com/phpchinese/phpchinese-oy5h3t6b.html

1234.PHP8 FFI::cast — 執(zhí)行 C 類型轉換

(PHP 7 >= 7.4.0, PHP 8)FFI::cast — 執(zhí)行 C 類型轉換說明public static FFI::cast(FFI\CType|string $type, FFI\CData|int|float|bool|null &$ptr): ?FFI\CDatapublic FFI::cast(FFI\CType|string $type, FFI\CData|int|float|bool|null &$ptr): ?FFI\CDataFFI::cast() 創(chuàng)建一個新的 FFI\CData 對象...

http://m.o2fo.com/phpchinese/php8-ffi-cast.html

1235.PHP8 FFI::cdef — 創(chuàng)建一個新的 FFI 對象

(PHP 7 >= 7.4.0, PHP 8) FFI::cdef — 創(chuàng)建一個新的 FFI 對象 說明public static FFI::cdef(string $code = "", ?string $lib = null): FFI 創(chuàng)建一個新的 FFI 對象。 參數(shù) code 包含常規(guī) C 語言聲明序列(類型、結構、函數(shù)、變量等)的字符串。實際上,該字...

http://m.o2fo.com/phpchinese/php8-ffi-cdef.html

1236.PHP8 FFI::free — 發(fā)布非托管數(shù)據(jù)結構

(PHP 7 >= 7.4.0, PHP 8)FFI::free — 發(fā)布非托管數(shù)據(jù)結構說明public static FFI::free(FFI\CData &$ptr): void手動釋放先前創(chuàng)建的非托管數(shù)據(jù)結構。參數(shù)ptr指向 C 數(shù)據(jù)結構的非托管指針的句柄。返回值沒有返回值。

http://m.o2fo.com/phpchinese/php8-ffi-free.html

1237.PHP8 FFI::isNull — 檢查 FFI\CData 是否為空指針

(PHP 7 >= 7.4.0, PHP 8)FFI::isNull — 檢查 FFI\CData 是否為空指針說明public static FFI::isNull ( FFI\CData &$ptr ): bool檢查 FFI\CData 是否為空指針。參數(shù)ptr指向 C 數(shù)據(jù)結構的指針的句柄。返回值返回 FFI\CData 是否為空指針。

http://m.o2fo.com/phpchinese/php8-ffi-isnull---check-if-ffi----cdata-is-a-null-pointer.html

1238.PHP8 FFI::load — 從 C 頭文件加載 C 聲明

(PHP 7 >= 7.4.0, PHP 8)FFI::load — 從 C 頭文件加載 C 聲明說明public static FFI::load(string $filename): ?FFI從 C 頭文件加載 C 聲明??梢允褂眉虞d的 C 頭文件中的特殊 FFI_LIB 定義來指定應加載的共享庫。參數(shù)filenameC 頭文件的名稱。 不支持 C ...

http://m.o2fo.com/phpchinese/php8-ffi-load.html

1239.PHP8 FFI::memcpy — 將一個內存區(qū)域復制到另一內存區(qū)域

(PHP 7 >= 7.4.0, PHP 8)FFI::memcpy — 將一個內存區(qū)域復制到另一內存區(qū)域說明public static FFI::memcpy(FFI\CData &$to, FFI\CData|string &$from, int $size): void將 size 字節(jié)從內存區(qū)域 from 復制到內存區(qū)域 to。參數(shù)to要復制到的內存區(qū)域的開始位置。from...

http://m.o2fo.com/phpchinese/php8-ffi-memcpy.html

1240.PHP8 FFI::memset — 填充內存區(qū)域

(PHP 7 >= 7.4.0, PHP 8)FFI::memset — 填充內存區(qū)域說明public static FFI::memset(FFI\CData &$ptr, int $value, int $size): void用給定的字節(jié)值填充 ptr 指向的內存區(qū)域的 size 字節(jié)。參數(shù)ptr要填充的內存區(qū)域的開始。value要填充的字節(jié)。size要填充的字...

http://m.o2fo.com/phpchinese/php8-ffi-memset.html

抱歉,暫時沒有相關的微課

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

抱歉,暫時沒有相關的視頻課程

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

抱歉,暫時沒有相關的教程

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

1231.PHP8 Zip 上下文選項

... password 用于指定加密歸檔的密碼。 更新日志 版本 說明 PHP 7.2.0, PECL zip 1.14.0 添加 password。 示例 示例 #1 基礎 password 用法示例 <?php // 讀取加密歸檔 $opts = array( 'zip' => array( 'password' => 'secret', ), ); // 創(chuàng)建上下文... $context = str...

http://m.o2fo.com/phpchinese/zip-context-options.html

1232.PHP8 FFI::addr — 創(chuàng)建指向 C 數(shù)據(jù)的非托管指針

(PHP 7 >= 7.4.0, PHP 8)FFI::addr — 創(chuàng)建指向 C 數(shù)據(jù)的非托管指針說明public static FFI::addr(FFI\CData &$ptr): FFI\CData創(chuàng)建一個指向由給定 FFI\CData 表示的 C 數(shù)據(jù)的非托管指針。源 ptr 必須在結果指針之后繼續(xù)存在。該函數(shù)主要用于通過指針向 ...

http://m.o2fo.com/phpchinese/php8-ffi-addr.html

1233.PHP8 FFI::alignof — 獲取對齊方式

(PHP 7 >= 7.4.0, PHP 8)FFI::alignof — 獲取對齊方式說明public static FFI::alignof(FFI\CData|FFI\CType &$ptr): int獲取給定 FFI\CData 或 FFI\CType 對象的對齊方式。參數(shù)ptrC 數(shù)據(jù)或類型的句柄。返回值返回給定 FFI\CData 或 FFI\CType 對象的對齊方式。

http://m.o2fo.com/phpchinese/phpchinese-oy5h3t6b.html

1234.PHP8 FFI::cast — 執(zhí)行 C 類型轉換

(PHP 7 >= 7.4.0, PHP 8)FFI::cast — 執(zhí)行 C 類型轉換說明public static FFI::cast(FFI\CType|string $type, FFI\CData|int|float|bool|null &$ptr): ?FFI\CDatapublic FFI::cast(FFI\CType|string $type, FFI\CData|int|float|bool|null &$ptr): ?FFI\CDataFFI::cast() 創(chuàng)建一個新的 FFI\CData 對象...

http://m.o2fo.com/phpchinese/php8-ffi-cast.html

1235.PHP8 FFI::cdef — 創(chuàng)建一個新的 FFI 對象

(PHP 7 >= 7.4.0, PHP 8) FFI::cdef — 創(chuàng)建一個新的 FFI 對象 說明public static FFI::cdef(string $code = "", ?string $lib = null): FFI 創(chuàng)建一個新的 FFI 對象。 參數(shù) code 包含常規(guī) C 語言聲明序列(類型、結構、函數(shù)、變量等)的字符串。實際上,該字...

http://m.o2fo.com/phpchinese/php8-ffi-cdef.html

1236.PHP8 FFI::free — 發(fā)布非托管數(shù)據(jù)結構

(PHP 7 >= 7.4.0, PHP 8)FFI::free — 發(fā)布非托管數(shù)據(jù)結構說明public static FFI::free(FFI\CData &$ptr): void手動釋放先前創(chuàng)建的非托管數(shù)據(jù)結構。參數(shù)ptr指向 C 數(shù)據(jù)結構的非托管指針的句柄。返回值沒有返回值。

http://m.o2fo.com/phpchinese/php8-ffi-free.html

1237.PHP8 FFI::isNull — 檢查 FFI\CData 是否為空指針

(PHP 7 >= 7.4.0, PHP 8)FFI::isNull — 檢查 FFI\CData 是否為空指針說明public static FFI::isNull ( FFI\CData &$ptr ): bool檢查 FFI\CData 是否為空指針。參數(shù)ptr指向 C 數(shù)據(jù)結構的指針的句柄。返回值返回 FFI\CData 是否為空指針。

http://m.o2fo.com/phpchinese/php8-ffi-isnull---check-if-ffi----cdata-is-a-null-pointer.html

1238.PHP8 FFI::load — 從 C 頭文件加載 C 聲明

(PHP 7 >= 7.4.0, PHP 8)FFI::load — 從 C 頭文件加載 C 聲明說明public static FFI::load(string $filename): ?FFI從 C 頭文件加載 C 聲明。可以使用加載的 C 頭文件中的特殊 FFI_LIB 定義來指定應加載的共享庫。參數(shù)filenameC 頭文件的名稱。 不支持 C ...

http://m.o2fo.com/phpchinese/php8-ffi-load.html

1239.PHP8 FFI::memcpy — 將一個內存區(qū)域復制到另一內存區(qū)域

(PHP 7 >= 7.4.0, PHP 8)FFI::memcpy — 將一個內存區(qū)域復制到另一內存區(qū)域說明public static FFI::memcpy(FFI\CData &$to, FFI\CData|string &$from, int $size): void將 size 字節(jié)從內存區(qū)域 from 復制到內存區(qū)域 to。參數(shù)to要復制到的內存區(qū)域的開始位置。from...

http://m.o2fo.com/phpchinese/php8-ffi-memcpy.html

1240.PHP8 FFI::memset — 填充內存區(qū)域

(PHP 7 >= 7.4.0, PHP 8)FFI::memset — 填充內存區(qū)域說明public static FFI::memset(FFI\CData &$ptr, int $value, int $size): void用給定的字節(jié)值填充 ptr 指向的內存區(qū)域的 size 字節(jié)。參數(shù)ptr要填充的內存區(qū)域的開始。value要填充的字節(jié)。size要填充的字...

http://m.o2fo.com/phpchinese/php8-ffi-memset.html

抱歉,暫時沒有相關的文章

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

熱門課程