App下載

詞條

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

2211.PHP gd_info – 取得當(dāng)前安裝的 GD 庫的信息

PHP gd_info — 取得當(dāng)前安裝的 GD 庫的信息 PHP 圖像處理 gd_info — 取得當(dāng)前安裝的 GD 庫的信息。 語法 array gd_info ( void ) 返回一個(gè)關(guān)聯(lián)數(shù)組描述了安裝的 GD 庫的版本和性能。 實(shí)例 <?php var_dump(gd_info()); ?> 以上實(shí)例輸出結(jié)果為...

http://www.o2fo.com/php/php-gd-info.html

2212.PHP8 靜態(tài)(static)關(guān)鍵字

...。警告用靜態(tài)方式調(diào)用一個(gè)非靜態(tài)方法會(huì)拋出 Error。在 PHP 8.0.0 之前,通過靜態(tài)方式調(diào)用一個(gè)非靜態(tài)方法這種用法已經(jīng)被廢棄,并且會(huì)導(dǎo)致一個(gè) E_DEPRECATED 級(jí)別的警告。示例 #1 靜態(tài)方法示例<?php class Foo { public static function aStaticM...

http://www.o2fo.com/phpchinese/php8-static-keyword.html

2213.PHP8 ob_get_flush — 刷新輸出緩沖區(qū),將其作為字符串返回并關(guān)閉輸出緩沖區(qū)

(PHP 4 >= 4.3.0, PHP 5, PHP 7, PHP 8)ob_get_flush — 刷新輸出緩沖區(qū),將其作為字符串返回并關(guān)閉輸出緩沖區(qū)說明ob_get_flush(): string|falseob_get_flush() 刷新輸出緩沖區(qū),將其作為字符串返回并關(guān)閉輸出緩沖。輸出緩沖區(qū)比由帶有 PHP_OUTPUT_HANDL...

http://www.o2fo.com/phpchinese/php8-ob-get-flush.html

2214.PHP8 hash_hmac_file

(PHP 5 >= 5.1.2, PHP 7, PHP 8, PECL hash >= 1.1)hash_hmac_file — 使用 HMAC 方法和給定文件的內(nèi)容生成帶密鑰的散列值說明hash_hmac_file( string $algo, string $filename, string $key, bool $binary = false ): string|false參數(shù) algo要使用的散列算法名稱,例如:"m...

http://www.o2fo.com/phpchinese/php8-hashhmacfile.html

2215.PHP xml_set_notation_decl_handler() 函數(shù)

PHP xml_set_notation_decl_handler() 函數(shù) 完整的 PHP XML 參考手冊(cè) 定義和用法 xml_set_notation_decl_handler() 函數(shù)規(guī)定當(dāng)解析器在 XML 文檔中找到符號(hào)聲明時(shí)被調(diào)用的函數(shù)。 如果成功,該函數(shù)則返回 TRUE。如果失敗,則返回 FALSE。 語法 xml_set_...

http://www.o2fo.com/php/func-xml-set-notation-decl-handler.html

2216.PHP8 注解概覽

(PHP 8)注解功能提供了代碼中的聲明部分都可以添加結(jié)構(gòu)化、機(jī)器可讀的元數(shù)據(jù)的能力, 注解的目標(biāo)可以是類、方法、函數(shù)、參數(shù)、屬性、類常量。 通過 反射 API 可在運(yùn)行時(shí)獲取注解所定義的元數(shù)據(jù)。 因此注解可以成為直接嵌...

http://www.o2fo.com/phpchinese/overview-of-php8-annotations.html

2217.PHP8 hash_hmac_algos

(PHP 7 >= 7.2.0, PHP 8)hash_hmac_algos — 返回適用于 hash_hmac 的已注冊(cè)散列算法列表說明hash_hmac_algos(): array參數(shù) 此函數(shù)沒有參數(shù)。返回值 返回?cái)?shù)字索引數(shù)組,包含適用于 hash_hmac() 支持的散列算法列表。示例 示例 #1 hash_hmac_algos() 示例&...

http://www.o2fo.com/phpchinese/php8-hashhmacalgos.html

2218.PHP8 wincache_ucache_cas — 比較變量與舊值,并將新值分配給它

...在失敗時(shí)返回 false。示例示例 #1 Using wincache_ucache_cas()<?php wincache_ucache_set('counter', 2922); var_dump(wincache_ucache_cas('counter', 2922, 1)); var_dump(wincache_ucache_get('counter')); ?>以上示例會(huì)輸出:bool(true) int(1) 參見wincache_ucache_inc() - 增加與鍵...

http://www.o2fo.com/phpchinese/php8-wincache-ucache-cas.html

2219.PHP8 radius_get_tagged_attr_data — 從帶標(biāo)簽的屬性中提取數(shù)據(jù)

...返回 false。示例示例 #1 radius_get_tagged_attr_data() example<?php while ($resa = radius_get_attr($res)) { if (!is_array($resa)) { printf ("Error getting attribute: %s\n", radius_strerror($res)); exit; } $attr = $resa['attr']; $data = $resa['data']; $tag = radius_get_tagged_attr_tag($data...

http://www.o2fo.com/phpchinese/php8-radius-get-tagged-attr-data.html

2220.PHP8 xhprof_enable — 啟動(dòng) xhprof 性能分析器

...加可選的 options 參數(shù)。 示例 示例 #1 xhprof_enable() 示例<?php // 1. elapsed time + memory + CPU profiling; and ignore built-in (internal) functions xhprof_enable(XHPROF_FLAGS_NO_BUILTINS | XHPROF_FLAGS_CPU | XHPROF_FLAGS_MEMORY); // 2. elapsed time profiling; ignore call_user_func* ...

http://www.o2fo.com/phpchinese/php8-xhprof-enable.html

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

w3cschool 建議您:

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

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

w3cschool 建議您:

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

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

w3cschool 建議您:

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

2211.PHP gd_info – 取得當(dāng)前安裝的 GD 庫的信息

PHP gd_info — 取得當(dāng)前安裝的 GD 庫的信息 PHP 圖像處理 gd_info — 取得當(dāng)前安裝的 GD 庫的信息。 語法 array gd_info ( void ) 返回一個(gè)關(guān)聯(lián)數(shù)組描述了安裝的 GD 庫的版本和性能。 實(shí)例 <?php var_dump(gd_info()); ?> 以上實(shí)例輸出結(jié)果為...

http://www.o2fo.com/php/php-gd-info.html

2212.PHP8 靜態(tài)(static)關(guān)鍵字

...。警告用靜態(tài)方式調(diào)用一個(gè)非靜態(tài)方法會(huì)拋出 Error。在 PHP 8.0.0 之前,通過靜態(tài)方式調(diào)用一個(gè)非靜態(tài)方法這種用法已經(jīng)被廢棄,并且會(huì)導(dǎo)致一個(gè) E_DEPRECATED 級(jí)別的警告。示例 #1 靜態(tài)方法示例<?php class Foo { public static function aStaticM...

http://www.o2fo.com/phpchinese/php8-static-keyword.html

2213.PHP8 ob_get_flush — 刷新輸出緩沖區(qū),將其作為字符串返回并關(guān)閉輸出緩沖區(qū)

(PHP 4 >= 4.3.0, PHP 5, PHP 7, PHP 8)ob_get_flush — 刷新輸出緩沖區(qū),將其作為字符串返回并關(guān)閉輸出緩沖區(qū)說明ob_get_flush(): string|falseob_get_flush() 刷新輸出緩沖區(qū),將其作為字符串返回并關(guān)閉輸出緩沖。輸出緩沖區(qū)比由帶有 PHP_OUTPUT_HANDL...

http://www.o2fo.com/phpchinese/php8-ob-get-flush.html

2214.PHP8 hash_hmac_file

(PHP 5 >= 5.1.2, PHP 7, PHP 8, PECL hash >= 1.1)hash_hmac_file — 使用 HMAC 方法和給定文件的內(nèi)容生成帶密鑰的散列值說明hash_hmac_file( string $algo, string $filename, string $key, bool $binary = false ): string|false參數(shù) algo要使用的散列算法名稱,例如:"m...

http://www.o2fo.com/phpchinese/php8-hashhmacfile.html

2215.PHP xml_set_notation_decl_handler() 函數(shù)

PHP xml_set_notation_decl_handler() 函數(shù) 完整的 PHP XML 參考手冊(cè) 定義和用法 xml_set_notation_decl_handler() 函數(shù)規(guī)定當(dāng)解析器在 XML 文檔中找到符號(hào)聲明時(shí)被調(diào)用的函數(shù)。 如果成功,該函數(shù)則返回 TRUE。如果失敗,則返回 FALSE。 語法 xml_set_...

http://www.o2fo.com/php/func-xml-set-notation-decl-handler.html

2216.PHP8 注解概覽

(PHP 8)注解功能提供了代碼中的聲明部分都可以添加結(jié)構(gòu)化、機(jī)器可讀的元數(shù)據(jù)的能力, 注解的目標(biāo)可以是類、方法、函數(shù)、參數(shù)、屬性、類常量。 通過 反射 API 可在運(yùn)行時(shí)獲取注解所定義的元數(shù)據(jù)。 因此注解可以成為直接嵌...

http://www.o2fo.com/phpchinese/overview-of-php8-annotations.html

2217.PHP8 hash_hmac_algos

(PHP 7 >= 7.2.0, PHP 8)hash_hmac_algos — 返回適用于 hash_hmac 的已注冊(cè)散列算法列表說明hash_hmac_algos(): array參數(shù) 此函數(shù)沒有參數(shù)。返回值 返回?cái)?shù)字索引數(shù)組,包含適用于 hash_hmac() 支持的散列算法列表。示例 示例 #1 hash_hmac_algos() 示例&...

http://www.o2fo.com/phpchinese/php8-hashhmacalgos.html

2218.PHP8 wincache_ucache_cas — 比較變量與舊值,并將新值分配給它

...在失敗時(shí)返回 false。示例示例 #1 Using wincache_ucache_cas()<?php wincache_ucache_set('counter', 2922); var_dump(wincache_ucache_cas('counter', 2922, 1)); var_dump(wincache_ucache_get('counter')); ?>以上示例會(huì)輸出:bool(true) int(1) 參見wincache_ucache_inc() - 增加與鍵...

http://www.o2fo.com/phpchinese/php8-wincache-ucache-cas.html

2219.PHP8 radius_get_tagged_attr_data — 從帶標(biāo)簽的屬性中提取數(shù)據(jù)

...返回 false。示例示例 #1 radius_get_tagged_attr_data() example<?php while ($resa = radius_get_attr($res)) { if (!is_array($resa)) { printf ("Error getting attribute: %s\n", radius_strerror($res)); exit; } $attr = $resa['attr']; $data = $resa['data']; $tag = radius_get_tagged_attr_tag($data...

http://www.o2fo.com/phpchinese/php8-radius-get-tagged-attr-data.html

2220.PHP8 xhprof_enable — 啟動(dòng) xhprof 性能分析器

...加可選的 options 參數(shù)。 示例 示例 #1 xhprof_enable() 示例<?php // 1. elapsed time + memory + CPU profiling; and ignore built-in (internal) functions xhprof_enable(XHPROF_FLAGS_NO_BUILTINS | XHPROF_FLAGS_CPU | XHPROF_FLAGS_MEMORY); // 2. elapsed time profiling; ignore call_user_func* ...

http://www.o2fo.com/phpchinese/php8-xhprof-enable.html

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

w3cschool 建議您:

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

熱門課程