App下載

詞條

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

1631.PHP8 radius_close — 釋放所有資源

...$radius_handle): bool通常情況下,不需要調(diào)用這個函數(shù),因?yàn)?em>PHP會在每個請求結(jié)束時(shí)自動釋放所有資源。參數(shù)radius_handleThe RADIUS resource.返回值成功時(shí)返回 true, 或者在失敗時(shí)返回 false。

http://m.o2fo.com/phpchinese/php8-radius-close.html

1632.PHP8 radius_create_request — 創(chuàng)建會計(jì)或認(rèn)證請求

...敗時(shí)返回 false。示例示例 #1 radius_create_request() example<?php if (!radius_create_request($res, RADIUS_ACCESS_REQUEST)) { echo 'RadiusError:' . radius_strerror($res). "\n<br />"; exit; } ?>參見radius_send_request() - 發(fā)送請求并等待響應(yīng)

http://m.o2fo.com/phpchinese/php8-radius-create-request.html

1633.PHP8 radius_cvt_int — 將原始數(shù)據(jù)轉(zhuǎn)換為整數(shù)

...據(jù)中提取整數(shù)并返回。示例示例 #1 radius_cvt_int() 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']; switch ($attr) { case RADIUS_FRAMED_MT...

http://m.o2fo.com/phpchinese/php8-radius-cvt-int.html

1634.PHP8 radius_demangle_mppe_key — 從混淆的數(shù)據(jù)中推導(dǎo)出 MPPE 密鑰

...參見 RFC 2548)。然而,這個函數(shù)是無用的,因?yàn)槲艺J(rèn)為 PHP 中不會有 PPTP-MPPE 的實(shí)現(xiàn)。參數(shù)radius_handleRADIUS 資源。mangled需要解混淆的數(shù)據(jù)。返回值返回解混淆后的字符串,出現(xiàn)錯誤時(shí)返回 false。

http://m.o2fo.com/phpchinese/php8-radius-demangle-mppe-key.html

1635.PHP8 簡介

...多大用處,但當(dāng)編寫從命令行使用的腳本時(shí)非常有用.從 PHP 7.1.0 開始,該擴(kuò)展支持 Windows。警告readline 擴(kuò)展并非線程安全!因此,強(qiáng)烈建議不要在任何真正線程安全的 SAPI(例如 Apache 的 mod_winnt)中使用這個擴(kuò)展!

http://m.o2fo.com/phpchinese/introduction-to-php8+.html

1636.PHP8 預(yù)定義常量

下列常量由此擴(kuò)展定義,且僅在此擴(kuò)展編譯入 PHP 或在運(yùn)行時(shí)動態(tài)載入時(shí)可用。READLINE_LIB (string)用于提供readline支持的庫;當(dāng)前可以是readline或libedit。

http://m.o2fo.com/phpchinese/php8-predefined-+.html

1637.PHP8 readline — 讀取一行

...多數(shù)據(jù)可讀,則返回 false。示例示例 #1 readline() 示例<?php //get 3 commands from user for ($i=0; $i < 3; $i++) { $line = readline("Command: "); readline_add_history($line); } //dump history print_r(readline_list_history()); //dump variables print_r(readline_info()); ?

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

1638.PHP8 Bzip2運(yùn)行時(shí)配置

此擴(kuò)展沒有在 ?php.ini? 中定義配置指令。

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

1639.PHP8 Bzip2示例

...符串,然后輸出該文件里的內(nèi)容。示例 #1 bzip2 小例子<?php $filename = "/tmp/testfile.bz2"; $str = "This is a test string.\n"; // 打開一個文件用于寫入 $bz = bzopen($filename, "w"); // 寫入字符串到文件 bzwrite($bz, $str); // 關(guān)閉文件 bzclose($bz); // 打開...

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

1640.PHP8 LZF運(yùn)行時(shí)配置

此擴(kuò)展沒有在 ?php.ini?中定義配置指令。

http://m.o2fo.com/phpchinese/php8-lzf-runtime-configuration.html

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

w3cschool 建議您:

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

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

w3cschool 建議您:

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

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

w3cschool 建議您:

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

1631.PHP8 radius_close — 釋放所有資源

...$radius_handle): bool通常情況下,不需要調(diào)用這個函數(shù),因?yàn)?em>PHP會在每個請求結(jié)束時(shí)自動釋放所有資源。參數(shù)radius_handleThe RADIUS resource.返回值成功時(shí)返回 true, 或者在失敗時(shí)返回 false。

http://m.o2fo.com/phpchinese/php8-radius-close.html

1632.PHP8 radius_create_request — 創(chuàng)建會計(jì)或認(rèn)證請求

...敗時(shí)返回 false。示例示例 #1 radius_create_request() example<?php if (!radius_create_request($res, RADIUS_ACCESS_REQUEST)) { echo 'RadiusError:' . radius_strerror($res). "\n<br />"; exit; } ?>參見radius_send_request() - 發(fā)送請求并等待響應(yīng)

http://m.o2fo.com/phpchinese/php8-radius-create-request.html

1633.PHP8 radius_cvt_int — 將原始數(shù)據(jù)轉(zhuǎn)換為整數(shù)

...據(jù)中提取整數(shù)并返回。示例示例 #1 radius_cvt_int() 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']; switch ($attr) { case RADIUS_FRAMED_MT...

http://m.o2fo.com/phpchinese/php8-radius-cvt-int.html

1634.PHP8 radius_demangle_mppe_key — 從混淆的數(shù)據(jù)中推導(dǎo)出 MPPE 密鑰

...參見 RFC 2548)。然而,這個函數(shù)是無用的,因?yàn)槲艺J(rèn)為 PHP 中不會有 PPTP-MPPE 的實(shí)現(xiàn)。參數(shù)radius_handleRADIUS 資源。mangled需要解混淆的數(shù)據(jù)。返回值返回解混淆后的字符串,出現(xiàn)錯誤時(shí)返回 false。

http://m.o2fo.com/phpchinese/php8-radius-demangle-mppe-key.html

1635.PHP8 簡介

...多大用處,但當(dāng)編寫從命令行使用的腳本時(shí)非常有用.從 PHP 7.1.0 開始,該擴(kuò)展支持 Windows。警告readline 擴(kuò)展并非線程安全!因此,強(qiáng)烈建議不要在任何真正線程安全的 SAPI(例如 Apache 的 mod_winnt)中使用這個擴(kuò)展!

http://m.o2fo.com/phpchinese/introduction-to-php8+.html

1636.PHP8 預(yù)定義常量

下列常量由此擴(kuò)展定義,且僅在此擴(kuò)展編譯入 PHP 或在運(yùn)行時(shí)動態(tài)載入時(shí)可用。READLINE_LIB (string)用于提供readline支持的庫;當(dāng)前可以是readline或libedit。

http://m.o2fo.com/phpchinese/php8-predefined-+.html

1637.PHP8 readline — 讀取一行

...多數(shù)據(jù)可讀,則返回 false。示例示例 #1 readline() 示例<?php //get 3 commands from user for ($i=0; $i < 3; $i++) { $line = readline("Command: "); readline_add_history($line); } //dump history print_r(readline_list_history()); //dump variables print_r(readline_info()); ?

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

1638.PHP8 Bzip2運(yùn)行時(shí)配置

此擴(kuò)展沒有在 ?php.ini? 中定義配置指令。

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

1639.PHP8 Bzip2示例

...符串,然后輸出該文件里的內(nèi)容。示例 #1 bzip2 小例子<?php $filename = "/tmp/testfile.bz2"; $str = "This is a test string.\n"; // 打開一個文件用于寫入 $bz = bzopen($filename, "w"); // 寫入字符串到文件 bzwrite($bz, $str); // 關(guān)閉文件 bzclose($bz); // 打開...

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

1640.PHP8 LZF運(yùn)行時(shí)配置

此擴(kuò)展沒有在 ?php.ini?中定義配置指令。

http://m.o2fo.com/phpchinese/php8-lzf-runtime-configuration.html

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

w3cschool 建議您:

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

熱門課程