App下載

詞條

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

1501.PHP7功能之標(biāo)量類(lèi)型聲明

PHP7 中為了提高執(zhí)行效率,引入了一個(gè)新的功能,即在函數(shù)方法中增加了 Scalar 類(lèi)型聲明(標(biāo)量類(lèi)型聲明),這樣做節(jié)省了對(duì)數(shù)據(jù)類(lèi)型的檢測(cè)。標(biāo)量類(lèi)型聲明有如下的兩個(gè)選項(xiàng):強(qiáng)制模式:強(qiáng)制是默認(rèn)的模式,不需要指定。嚴(yán)...

http://www.o2fo.com/phpseven/phpseven-nsw22f3t.html

1502.PHP8 在同一個(gè)文件中定義多個(gè)命名空間

(PHP 5 >= 5.3.0, PHP 7, PHP 8)也可以在同一個(gè)文件中定義多個(gè)命名空間。在同一個(gè)文件中定義多個(gè)命名空間有兩種語(yǔ)法形式。示例 #1 定義多個(gè)命名空間,簡(jiǎn)單組合語(yǔ)法<?php namespace MyProject; const CONNECT_OK = 1; class Connection { /* ... */ } fun...

http://www.o2fo.com/phpchinese/php8-defines-multiple-namespaces-in-the-same-file.html

1503.PHP mysqli_options() 函數(shù)

實(shí)例打開(kāi)一個(gè)到 MySQL 服務(wù)器的新連接:<?php $con=mysqli_init(); if (!$con) { die("mysqli_init failed"); } mysqli_options($con,MYSQLI_READ_DEFAULT_FILE,"myfile.cnf"); if (!mysqli_real_connect($con,"localhost","my_user","my_password","my_db")) { die("連接錯(cuò)誤: " . mysqli_connect_e...

http://www.o2fo.com/php/func-mysqli-options.html

1504.PHP8 odbc_setoption

PHP 4、PHP 5、PHP 7、PHP 8)odbc_setoption - 調(diào)整 ODBC 設(shè)置說(shuō)明odbc_setoption( resource $odbc, int $which, int $option, int $value ): bool此函數(shù)允許擺弄 ODBC 選項(xiàng) 特定的連接或查詢(xún)結(jié)果。它是為了幫助而寫(xiě)的 在古怪的 ODBC 驅(qū)動(dòng)程序中查找解決問(wèn)題的...

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

1505.PHP8 openssl_spki_export_challenge

(PHP 5 >= 5.6.0, PHP 7, PHP 8)openssl_spki_export_challenge — 導(dǎo)出與簽名公鑰和 challenge 相關(guān)的 challenge說(shuō)明openssl_spki_export_challenge(string $spki): string|false從編碼的簽名公鑰和 challenge 中導(dǎo)出 challenge參數(shù) spki需要有效的簽名公鑰和 challenge返回...

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

1506.PHP md5() 函數(shù)

PHP md5() 函數(shù) PHP String 參考手冊(cè) 實(shí)例 計(jì)算字符串 "Hello" 的 MD5 散列: <?php $str = "Hello"; echo md5($str); ?> 運(yùn)行實(shí)例 ? 定義和用法 md5() 函數(shù)計(jì)算字符串的 MD5 散列。 md5() 函數(shù)使用 RSA 數(shù)據(jù)安全,包括 MD5 報(bào)文摘要算法。 來(lái)自 RFC...

http://www.o2fo.com/php/func-string-md5.html

1507.PHP mysqli_fetch_field() 函數(shù)

PHP mysqli_fetch_field() 函數(shù) PHP MySQLi 參考手冊(cè) 實(shí)例 返回結(jié)果集中下一字段(列),然后輸出每個(gè)字段名稱(chēng)、表格和最大長(zhǎng)度: <?php $con=mysqli_connect("localhost","my_user","my_password","my_db"); // Check connection if (mysqli_connect_errno($con)) { echo ...

http://www.o2fo.com/php/func-mysqli-fetch-field.html

1508.PHP8 dba_popen

PHP 4、PHP 5、PHP 7、PHP 8)dba_popen — 持久化打開(kāi)數(shù)據(jù)庫(kù)說(shuō)明dba_popen( string $path, string $mode, ?string $handler = null, int $permission = 0644, int $map_size = 0, ?int $flags = null ): resource|falsedba_popen() 建立持久數(shù)據(jù)庫(kù)實(shí)例 對(duì)于使用 .pathmodehandler參...

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

1509.PHP8 使用反射 API 讀取注解

...匹配的參數(shù)來(lái)實(shí)例化。示例 #1 通過(guò)反射 API 讀取注解<?php #[Attribute] class MyAttribute { public $value; public function __construct($value) { $this->value = $value; } } #[MyAttribute(value: 1234)] class Thing { } function dumpAttributeData($reflection) { $attributes = $refle...

http://www.o2fo.com/phpchinese/php8-uses-reflection-api-to-read-annotations.html

1510.PHP8 sodium_crypto_aead_chacha20poly1305_ietf_decrypt

PHP 7 >= 7.2.0, PHP 8)sodium_crypto_aead_chacha20poly1305_ietf_decrypt — 驗(yàn)證密文是否包含有效的標(biāo)記說(shuō)明sodium_crypto_aead_chacha20poly1305_ietf_decrypt( string $ciphertext, string $additional_data, string $nonce, string $key ): string|false驗(yàn)證然后使用 ChaCha20-Poly1...

http://www.o2fo.com/phpchinese/php8-sodiumcrypto-aeadchacha20poly1305ietfdecrypt.html

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

w3cschool 建議您:

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

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

w3cschool 建議您:

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

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

w3cschool 建議您:

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

1501.PHP7功能之標(biāo)量類(lèi)型聲明

PHP7 中為了提高執(zhí)行效率,引入了一個(gè)新的功能,即在函數(shù)方法中增加了 Scalar 類(lèi)型聲明(標(biāo)量類(lèi)型聲明),這樣做節(jié)省了對(duì)數(shù)據(jù)類(lèi)型的檢測(cè)。標(biāo)量類(lèi)型聲明有如下的兩個(gè)選項(xiàng):強(qiáng)制模式:強(qiáng)制是默認(rèn)的模式,不需要指定。嚴(yán)...

http://www.o2fo.com/phpseven/phpseven-nsw22f3t.html

1502.PHP8 在同一個(gè)文件中定義多個(gè)命名空間

(PHP 5 >= 5.3.0, PHP 7, PHP 8)也可以在同一個(gè)文件中定義多個(gè)命名空間。在同一個(gè)文件中定義多個(gè)命名空間有兩種語(yǔ)法形式。示例 #1 定義多個(gè)命名空間,簡(jiǎn)單組合語(yǔ)法<?php namespace MyProject; const CONNECT_OK = 1; class Connection { /* ... */ } fun...

http://www.o2fo.com/phpchinese/php8-defines-multiple-namespaces-in-the-same-file.html

1503.PHP mysqli_options() 函數(shù)

實(shí)例打開(kāi)一個(gè)到 MySQL 服務(wù)器的新連接:<?php $con=mysqli_init(); if (!$con) { die("mysqli_init failed"); } mysqli_options($con,MYSQLI_READ_DEFAULT_FILE,"myfile.cnf"); if (!mysqli_real_connect($con,"localhost","my_user","my_password","my_db")) { die("連接錯(cuò)誤: " . mysqli_connect_e...

http://www.o2fo.com/php/func-mysqli-options.html

1504.PHP8 odbc_setoption

PHP 4、PHP 5、PHP 7、PHP 8)odbc_setoption - 調(diào)整 ODBC 設(shè)置說(shuō)明odbc_setoption( resource $odbc, int $which, int $option, int $value ): bool此函數(shù)允許擺弄 ODBC 選項(xiàng) 特定的連接或查詢(xún)結(jié)果。它是為了幫助而寫(xiě)的 在古怪的 ODBC 驅(qū)動(dòng)程序中查找解決問(wèn)題的...

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

1505.PHP8 openssl_spki_export_challenge

(PHP 5 >= 5.6.0, PHP 7, PHP 8)openssl_spki_export_challenge — 導(dǎo)出與簽名公鑰和 challenge 相關(guān)的 challenge說(shuō)明openssl_spki_export_challenge(string $spki): string|false從編碼的簽名公鑰和 challenge 中導(dǎo)出 challenge參數(shù) spki需要有效的簽名公鑰和 challenge返回...

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

1506.PHP md5() 函數(shù)

PHP md5() 函數(shù) PHP String 參考手冊(cè) 實(shí)例 計(jì)算字符串 "Hello" 的 MD5 散列: <?php $str = "Hello"; echo md5($str); ?> 運(yùn)行實(shí)例 ? 定義和用法 md5() 函數(shù)計(jì)算字符串的 MD5 散列。 md5() 函數(shù)使用 RSA 數(shù)據(jù)安全,包括 MD5 報(bào)文摘要算法。 來(lái)自 RFC...

http://www.o2fo.com/php/func-string-md5.html

1507.PHP mysqli_fetch_field() 函數(shù)

PHP mysqli_fetch_field() 函數(shù) PHP MySQLi 參考手冊(cè) 實(shí)例 返回結(jié)果集中下一字段(列),然后輸出每個(gè)字段名稱(chēng)、表格和最大長(zhǎng)度: <?php $con=mysqli_connect("localhost","my_user","my_password","my_db"); // Check connection if (mysqli_connect_errno($con)) { echo ...

http://www.o2fo.com/php/func-mysqli-fetch-field.html

1508.PHP8 dba_popen

PHP 4、PHP 5、PHP 7、PHP 8)dba_popen — 持久化打開(kāi)數(shù)據(jù)庫(kù)說(shuō)明dba_popen( string $path, string $mode, ?string $handler = null, int $permission = 0644, int $map_size = 0, ?int $flags = null ): resource|falsedba_popen() 建立持久數(shù)據(jù)庫(kù)實(shí)例 對(duì)于使用 .pathmodehandler參...

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

1509.PHP8 使用反射 API 讀取注解

...匹配的參數(shù)來(lái)實(shí)例化。示例 #1 通過(guò)反射 API 讀取注解<?php #[Attribute] class MyAttribute { public $value; public function __construct($value) { $this->value = $value; } } #[MyAttribute(value: 1234)] class Thing { } function dumpAttributeData($reflection) { $attributes = $refle...

http://www.o2fo.com/phpchinese/php8-uses-reflection-api-to-read-annotations.html

1510.PHP8 sodium_crypto_aead_chacha20poly1305_ietf_decrypt

PHP 7 >= 7.2.0, PHP 8)sodium_crypto_aead_chacha20poly1305_ietf_decrypt — 驗(yàn)證密文是否包含有效的標(biāo)記說(shuō)明sodium_crypto_aead_chacha20poly1305_ietf_decrypt( string $ciphertext, string $additional_data, string $nonce, string $key ): string|false驗(yàn)證然后使用 ChaCha20-Poly1...

http://www.o2fo.com/phpchinese/php8-sodiumcrypto-aeadchacha20poly1305ietfdecrypt.html

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

w3cschool 建議您:

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

熱門(mén)課程