App下載

詞條

大約有 8,000 項(xiàng)符合查詢結(jié)果 ,庫(kù)內(nèi)數(shù)據(jù)總量為 78,409 項(xiàng)。(搜索耗時(shí):0.0066秒)

5541.PHP8 FFI::string — 從內(nèi)存區(qū)域創(chuàng)建 PHP 字符串

...4.0, PHP 8) FFI::string — 從內(nèi)存區(qū)域創(chuàng)建 PHP 字符串 說明public static FFI::string(FFI\CData &$ptr, ?int $size = null): string 從 ptr 指向的內(nèi)存區(qū)域的 size 字節(jié)創(chuàng)建 PHP 字符串。 參數(shù) ptr 要從中創(chuàng)建字符串的內(nèi)存區(qū)域的開頭。 size 要復(fù)制到字符串的...

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

5542.PHP8 FFI::typeof — 獲取 FFI\CData 的 FFI\CType

(PHP 7 >= 7.4.0, PHP 8)FFI::typeof — 獲取 FFI\CData 的 FFI\CType說明public static FFI::typeof(FFI\CData &$ptr): FFI\CType獲取表示給定 FFI\CData 對(duì)象類型的 FFI\CType 對(duì)象。參數(shù)ptr指向 C 數(shù)據(jù)結(jié)構(gòu)的指針的句柄。返回值返回表示給定 FFI\CData 對(duì)象類型的 ...

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

5543.TypeScript interface 繼承 class

interface 還可以繼承 class,即繼承該類的所有成員。關(guān)于 class 的詳細(xì)解釋,參見下一章。class A { x:string = ''; y():boolean { return true; } } interface B extends A { z: number } 上面示例中,B繼承了A,因此B就具有屬性x、y()和z。實(shí)現(xiàn)B接口的對(duì)象...

http://m.o2fo.com/tsryf/interface-inherits-class.html

5544.PHP8 安裝

OPcache 只能編譯為共享擴(kuò)展。 如果你使用 --disable-all 參數(shù) 禁用了默認(rèn)擴(kuò)展的構(gòu)建, 那么必須使用 --enable-opcache 選項(xiàng)來開啟 OPcache。編譯之后,就可以使用 zend_extension 指令來將 OPcache 擴(kuò)展加載到 PHP 中。在非 Windows 平臺(tái)使用 zend_ex...

http://m.o2fo.com/phpchinese/installation--php8.html

5545.PHP8 sys_get_temp_dir — 返回用于臨時(shí)文件的目錄

...錄里創(chuàng)建臨時(shí)文件 $temp_file = tempnam(sys_get_temp_dir(), 'Tux'); echo $temp_file; ?>以上示例的輸出類似于:C:\Windows\Temp\TuxA318.tmp 參見tmpfile() - 建立一個(gè)臨時(shí)文件tempnam() - 建立一個(gè)具有唯一文件名的文件

http://m.o2fo.com/phpchinese/php8-sys-get-temp-dir.html

5546.TypeScript Awaited<Type>

...是 Promise 類型,那么就會(huì)原樣返回。// number | boolean type C = Awaited<boolean | Promise<number>>; 上面示例中,類型參數(shù)是一個(gè)聯(lián)合類型,其中的boolean會(huì)原樣返回,所以最終返回的是number|boolean。Awaited<Type>的實(shí)現(xiàn)如下。type Awai...

http://m.o2fo.com/tsryf/typescript-awaitedlt-typegt.html

5547.TypeScript ReadonlyArray<Type>

...一個(gè)只讀數(shù)組類型,類型參數(shù)Type表示數(shù)組成員的類型。const values: ReadonlyArray<string> = ['a', 'b', 'c']; values[0] = 'x'; // 報(bào)錯(cuò) values.push('x'); // 報(bào)錯(cuò) values.pop(); // 報(bào)錯(cuò) values.splice(1, 1); // 報(bào)錯(cuò) 上面示例中,變量values的類型是一個(gè)只讀...

http://m.o2fo.com/tsryf/typescript-readonlyarraylt-typegt.html

5548.TypeScript @type

... /** * @type {NumberLike} */ let a = 0; 在@type命令中允許使用 TypeScript 類型及其語法。/**@type {true | false} */ let a; /** @type {number[]} */ let b; /** @type {Array<number>} */ let c; /** @type {{ readonly x: number, y?: string }} */ let d; /** @type {(s: string, b: boolean)...

http://m.o2fo.com/tsryf/typescript--type.html

5549.PHP8 WinCache Session Handler

WinCache會(huì)話處理程序(自WinCache 1.1.0起可用)可用于配置PHP將會(huì)話數(shù)據(jù)存儲(chǔ)在共享內(nèi)存會(huì)話緩存中。使用共享內(nèi)存而不是默認(rèn)的文件會(huì)話存儲(chǔ)有助于提高存儲(chǔ)大量數(shù)據(jù)的會(huì)話對(duì)象的PHP應(yīng)用程序的性能。WinCache會(huì)話緩存使用支持文件...

http://m.o2fo.com/phpchinese/php8-wincache-session-handler.html

5550.PHP8 xhprof_sample_disable — 停止 xhprof 性能采樣分析器

(PECL xhprof >= 0.9.0)xhprof_sample_disable — 停止 xhprof 性能采樣分析器說明xhprof_sample_disable(): array停止采樣模式的 xhprof 分析器。參數(shù)此函數(shù)沒有參數(shù)。返回值本次運(yùn)行的xhprof采樣數(shù)據(jù),array 類型。示例示例 #1 xhprof_sample_disable() 范例&...

http://m.o2fo.com/phpchinese/php8-xhprof-sample-disable.html

抱歉,暫時(shí)沒有相關(guān)的微課

w3cschool 建議您:

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

抱歉,暫時(shí)沒有相關(guān)的視頻課程

w3cschool 建議您:

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

抱歉,暫時(shí)沒有相關(guān)的教程

w3cschool 建議您:

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

5541.PHP8 FFI::string — 從內(nèi)存區(qū)域創(chuàng)建 PHP 字符串

...4.0, PHP 8) FFI::string — 從內(nèi)存區(qū)域創(chuàng)建 PHP 字符串 說明public static FFI::string(FFI\CData &$ptr, ?int $size = null): string 從 ptr 指向的內(nèi)存區(qū)域的 size 字節(jié)創(chuàng)建 PHP 字符串。 參數(shù) ptr 要從中創(chuàng)建字符串的內(nèi)存區(qū)域的開頭。 size 要復(fù)制到字符串的...

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

5542.PHP8 FFI::typeof — 獲取 FFI\CData 的 FFI\CType

(PHP 7 >= 7.4.0, PHP 8)FFI::typeof — 獲取 FFI\CData 的 FFI\CType說明public static FFI::typeof(FFI\CData &$ptr): FFI\CType獲取表示給定 FFI\CData 對(duì)象類型的 FFI\CType 對(duì)象。參數(shù)ptr指向 C 數(shù)據(jù)結(jié)構(gòu)的指針的句柄。返回值返回表示給定 FFI\CData 對(duì)象類型的 ...

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

5543.TypeScript interface 繼承 class

interface 還可以繼承 class,即繼承該類的所有成員。關(guān)于 class 的詳細(xì)解釋,參見下一章。class A { x:string = ''; y():boolean { return true; } } interface B extends A { z: number } 上面示例中,B繼承了A,因此B就具有屬性x、y()和z。實(shí)現(xiàn)B接口的對(duì)象...

http://m.o2fo.com/tsryf/interface-inherits-class.html

5544.PHP8 安裝

OPcache 只能編譯為共享擴(kuò)展。 如果你使用 --disable-all 參數(shù) 禁用了默認(rèn)擴(kuò)展的構(gòu)建, 那么必須使用 --enable-opcache 選項(xiàng)來開啟 OPcache。編譯之后,就可以使用 zend_extension 指令來將 OPcache 擴(kuò)展加載到 PHP 中。在非 Windows 平臺(tái)使用 zend_ex...

http://m.o2fo.com/phpchinese/installation--php8.html

5545.PHP8 sys_get_temp_dir — 返回用于臨時(shí)文件的目錄

...錄里創(chuàng)建臨時(shí)文件 $temp_file = tempnam(sys_get_temp_dir(), 'Tux'); echo $temp_file; ?>以上示例的輸出類似于:C:\Windows\Temp\TuxA318.tmp 參見tmpfile() - 建立一個(gè)臨時(shí)文件tempnam() - 建立一個(gè)具有唯一文件名的文件

http://m.o2fo.com/phpchinese/php8-sys-get-temp-dir.html

5546.TypeScript Awaited<Type>

...是 Promise 類型,那么就會(huì)原樣返回。// number | boolean type C = Awaited<boolean | Promise<number>>; 上面示例中,類型參數(shù)是一個(gè)聯(lián)合類型,其中的boolean會(huì)原樣返回,所以最終返回的是number|boolean。Awaited<Type>的實(shí)現(xiàn)如下。type Awai...

http://m.o2fo.com/tsryf/typescript-awaitedlt-typegt.html

5547.TypeScript ReadonlyArray<Type>

...一個(gè)只讀數(shù)組類型,類型參數(shù)Type表示數(shù)組成員的類型。const values: ReadonlyArray<string> = ['a', 'b', 'c']; values[0] = 'x'; // 報(bào)錯(cuò) values.push('x'); // 報(bào)錯(cuò) values.pop(); // 報(bào)錯(cuò) values.splice(1, 1); // 報(bào)錯(cuò) 上面示例中,變量values的類型是一個(gè)只讀...

http://m.o2fo.com/tsryf/typescript-readonlyarraylt-typegt.html

5548.TypeScript @type

... /** * @type {NumberLike} */ let a = 0; 在@type命令中允許使用 TypeScript 類型及其語法。/**@type {true | false} */ let a; /** @type {number[]} */ let b; /** @type {Array<number>} */ let c; /** @type {{ readonly x: number, y?: string }} */ let d; /** @type {(s: string, b: boolean)...

http://m.o2fo.com/tsryf/typescript--type.html

5549.PHP8 WinCache Session Handler

WinCache會(huì)話處理程序(自WinCache 1.1.0起可用)可用于配置PHP將會(huì)話數(shù)據(jù)存儲(chǔ)在共享內(nèi)存會(huì)話緩存中。使用共享內(nèi)存而不是默認(rèn)的文件會(huì)話存儲(chǔ)有助于提高存儲(chǔ)大量數(shù)據(jù)的會(huì)話對(duì)象的PHP應(yīng)用程序的性能。WinCache會(huì)話緩存使用支持文件...

http://m.o2fo.com/phpchinese/php8-wincache-session-handler.html

5550.PHP8 xhprof_sample_disable — 停止 xhprof 性能采樣分析器

(PECL xhprof >= 0.9.0)xhprof_sample_disable — 停止 xhprof 性能采樣分析器說明xhprof_sample_disable(): array停止采樣模式的 xhprof 分析器。參數(shù)此函數(shù)沒有參數(shù)。返回值本次運(yùn)行的xhprof采樣數(shù)據(jù),array 類型。示例示例 #1 xhprof_sample_disable() 范例&...

http://m.o2fo.com/phpchinese/php8-xhprof-sample-disable.html

抱歉,暫時(shí)沒有相關(guān)的文章

w3cschool 建議您:

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

熱門課程