text
stringlengths
1
254
output
stringlengths
2
255
More information regarding CrackLib along with the library can be found at http: / /www.users.dircon.co.uk / ~crypto /.
CrackLibに関するより詳现な情報は、 http://www.users.dircon.co.uk/~crypto/ にありたす。
The behaviour of these functions is affected by settings in php.ini.
これらの関数を䜿甚するには、 --with-crack[=DIR] オプションに よりCrackサポヌトを有効にしおPHPをコンパむルする必芁がありたす。
Crack configuration options
これらの関数の動䜜は、 php.ini の蚭定により倉化したす。
Default
衚 1Crack蚭定オプション
crack.default_dictionary
この拡匵モゞュヌルはリ゜ヌス型を党く定矩し たせん。
This extension has no resource types defined.
この拡匵モゞュヌルは定数を党く定矩したせ ん。
This example shows how to open a CrackLib dictionary, test a given password, retrieve any diagnostic messages, and close the dictionary.
以䞋の䟋は、CrackLib蟞曞をオヌプンする方法を瀺しおおり、指定したパ スワヌドを詊隓し、解析メッセヌゞを取埗し、蟞曞を閉じたす。
CrackLib example
䟋 1CrackLibの䟋
Prev
泚意 crack_check() は、 TRUE を返し、 crack_getlastmessage() は 'strong password'を返 したす。
The functions provided by this extension check whether a character or string falls into a certain character class according to the current locale (see also setlocale()).
以䞋の関数は、珟圚のロケヌル( setlocale() も参照) に基づき文字たたは文字列がある文字クラスに含たれるかどうかを調べ たす。
When called with an integer argument these functions behave exactly like their C counterparts from ctype.h.
敎数の匕数を指定しおコヌルした堎合、これらの関数は、Cの同名の関数 ず党く同様に動䜜したす。
When called with an empty string the result will always be TRUE.
文字列匕数を指定しおコヌルした堎合、これらの関数は、その文字列の党 おの文字を調べ、その文字列の党おの文字が芁求された基準に䞀臎する堎 合にのみ TRUE を返したす。
None besides functions from the standard C library which are always available.
文字列たたは敎数以倖のものを指定した堎合は、盎ちに FALSE が返され たす。
Beginning with PHP 4.2.0 these functions are enabled by default.
垞に利甚可胜な暙準Cラむブラリ関数以倖は䞍芁です。
You can disable ctype support with --disable-ctype.
PHP 4.2.0以降、これらの関数はデフォルトで有効ずなりたした。 以前のバヌゞョンでは、configure に --enable-ctype を指定しおPHPをコンパむル する必芁がありたす。 --disable-ctype によりctypeを無効にするこず ができたす。
You do not need to load any additional extension in order to use these functions.
Windows版の PHP にはこの拡匵モゞュヌルのサポヌトが組み蟌たれおいたす。これらの関数を䜿甚するために拡匵モゞュヌルを远加でロヌドする必芁はありたせん。
Builtin support for ctype is available with PHP 4.3.0.
泚意 ctypeの組蟌みサポヌトは、PHP 4.3.0で利甚可胜です。
This extension has no resource types defined.
この拡匵モゞュヌルは蚭定ディレクティブを党く 定矩したせん。
Prev
この拡匵モゞュヌルはリ゜ヌス型を党く定矩し たせん。
cyrus_unbind
この拡匵モゞュヌルは定数を党く定矩したせ ん。
From PHP version 4.2.3 you will atleast need CURL version 7.9.0 or higher.
これらの関数は、PHP 4.0.2で远加されたした。
In the "include" directory there should be a folder named "curl "which should contain the easy.h and curl.h files.
CURL関数を䜿甚するためには、 CURL パッケヌゞをむンストヌルしおおく必芁がありたす。PHPは、 CURL 7.0.2-beta 以降を必芁ずしたす。7.0.2-beta以前のバヌゞョンで は動䜜したせん。PHP バヌゞョン4.2.3以降、少なくずもCURLバヌゞョン 7.9.0以降が必芁ずなっおいたす。
C:\WINNT\SYSTEM32 or C:\WINDOWS\SYSTEM32)
Win32ナヌザぞの泚意 このモゞュヌルをWindows環境で䜿甚可胜ずするには、PHP/Win32バむナリ パッケヌゞのDLLフォルダにある libeay32.dll および ssleay32.dll を䜿甚するWindowsマシンのSYSTEM32 フォルダ(䟋: C:\WINNT\SYSTEM32 たたは C:\WINDOWS\SYSTEM32)にコピヌ する必芁がありたす。
Once you 've compiled PHP with CURL support, you can begin using the CURL functions.
これらの定数は、この拡匵モゞュヌルで定矩されおおり、 この拡匵モゞュヌルがPHP内郚にコンパむルされおいるか実行時に動的にロヌ ドされるかのどちらかの堎合のみ䜿甚可胜です。
Here is an example that uses the CURL functions to fetch the example.com homepage into a file:
PHPをCURLサポヌト機胜付きでコンパむルした堎合、curl関数を䜿甚可胜 ずなりたす。CURL関数の基本的な䜿甚法は、 curl_init() によりCURLセッションを初期化し、 続いお curl_exec() により転送を実行し、 curl_close() によりセッションを終了するずいうも のになりたす。CURL関数を䜿甚しおPHPホヌムペヌゞをファむルに取埗す る䟋を瀺したす。
?php $ch = curl_init ("http: / /www.example.com / "); $fp = fopen ("example_homepage.txt", "w"); curl_setopt ($ch, CURLOPT_FILE, $fp); curl_setopt ($ch, CURLOPT_HEADER, 0); curl_exec ($ch); curl_close ($ch); fclose ($fp);?
䟋 1 PHPのCURLモゞュヌルを䜿甚しおexample.comのホヌムペヌゞを取埗する
In short, CyberCash was bought out by VeriSign and although the CyberCash service continues to exist, VeriSign encourages users to switch.
以䞋の関数は、むンタプリタが --with-cybercash=[DIR] を付けお コンパむルされた堎合ににみ利甚可胜です。
This extension allows you to process credit cards transactions using Crédit Mutuel CyberMUT system (http: / /www.creditmutuel.fr / centre_commercial / vendez_sur_internet.html).
この拡匵モゞュヌルによりCrédit Mutuel CyberMUTシステム( http://www.creditmutuel.fr/centre_commercial/vendez_sur_internet.html )を甚いた クレゞットカヌドトランザクションが可胜ずなりたす。
If you are foreign in France, these functions will not be useful for you.
CynerMUT は、フランスで有名なWeb支払サヌビスで、 Crédit Mutuel bankにより提䟛されおいたす。フランス人以倖には、 これらの関数は有甚ではないでしょう。
Note:
これらの関数は、PHP 4.0.6で远加されたした。
Be sure to read the CyberMUT Developers Guide for full details of the required parameters.
泚意 これらの関数は、CyberMUT SDKぞのリンクを提䟛するだけです。 必芁なパラメヌタの詳现に぀いおは、CyberMUT Developers Guideを必ず 読んでください。
You will require the appropriate SDK for your platform, which may be sent to you after your CyberMUT' s subscription (contact them via Web, or go to the nearest Crédit Mutuel).
これらの関数は、PHPがオプション --with-cybermut[=DIR] を付けおコンパむルされおいる 堎合にのみ利甚可胜です。ただし、DIRは libcm-mac.a および cm-mac.h のある堎所です。 䜿甚するプラットフォヌム甚の適圓なSDKが必芁です。 これは、CyberMUTに登録した埌に送られおきたす。 (Web経由で䟝頌するか、たたは近くのCrédit Mutuelに行っおみお ください。)
Prev
泚意 この拡匵モゞュヌルはWindows環境では利甚できたせん。
This function is currently not documented; only the argument list is available.
この関数は、 珟圚のずころ詳现な情報はありたせん。匕数のリストのみが 蚘述されおいたす。
This extension is not available on Windows platforms.
泚意 この拡匵モゞュヌルはWindows環境では利甚できたせん。
To enable Cyrus IMAP support and to use these functions you have to compile PHP with the --with-cyrus option.
Cyrus IMAPサポヌトを有効にするには、 --with-cyrus オプションを指定しお PHPをコンパむルする必芁がありたす。
The constants below are defined by this extension, and will only be available when the extension has either been compiled into PHP or dynamically loaded at runtime.
泚意 この拡匵モゞュヌルはWindows環境では利甚できたせん。
cybermut_testmac
これらの定数は、この拡匵モゞュヌルで定矩されおおり、 この拡匵モゞュヌルがPHP内郚にコンパむルされおいるか実行時に動的にロヌ ドされるかのどちらかの堎合のみ䜿甚可胜です。
You can use these functions to format the date and time in many different ways.
以䞋の関数により、PHPスクリプトを実行するサヌバから日付ず時間を取 埗するこずが可胜ずなりたす。倚くの異なる方法で日付や時間をフォヌ マットするためにこれらの関数を䜿甚するこずができたす。
Make sure to take daylight saving time and leap years into consideration when working with these functions.
泚意 これらの関数は、䜿甚するサヌバのロケヌルの蚭定に䟝存しおいるこず に泚意しお䞋さい。これらの関数を䜿甚する際にはサマヌタむムおよび 閏幎を必ず考慮に入れるようにしお䞋さい。
There is no installation needed to use these functions; they are part of the PHP core.
これらの関数は、暙準モゞュヌルの䞀郚ず しお利甚可胜であり、垞に䜿甚できたす。
This extension has no resource types defined.
これらの関数はPHPコアに含たれるため、䜿甚す る際にむンストヌルは䞍芁です。
Prev
この拡匵モゞュヌルは蚭定ディレクティブを党く 定矩したせん。
dba_sync
この拡匵モゞュヌルはリ゜ヌス型を党く定矩し たせん。
checkdate
この拡匵モゞュヌルは定数を党く定矩したせ ん。
This is a general abstraction layer for several file-based databases.
これらの関数は、Berkeley DB 型デヌタベヌスぞのアクセス甚の基本関数を 構成したす。
The behaviour of various aspects depends on the implementation of the underlying database.
これらの関数は、耇数のファむルベヌスのデヌタベヌス甚のアブストラクション ・レむダヌです。その機胜は、 Sleepycat Software's DB2 サポヌトのような近代的なデヌタベヌスの機胜の サブセットに制限されおいたす。(IBMの゜フトり゚アDB2ず混同しないで 䞋さい。このデヌタベヌスは、 ODBC 関数 を通じおサポヌトされたす。)
You have to download and install supported dba-Handlers.
各機胜の動䜜は、䜿甚するデヌタベヌスの実装に䟝存したす。 dba_optimize() および dba_sync() の ような関数は、特定のデヌタベヌスでは動䜜したすが、他のデヌタベヌス では機胜したせん。サポヌトされるdbaハンドラをダりンロヌドし、むン ストヌルする必芁がありたす。
Dbm is the oldest (original) type of Berkeley DB style databases.
衚 1DBAハンドラのリスト
We do not support the compatibility functions built into DB2 and gdbm, because they are only compatible on the source code level, but cannot handle the original dbm format.
dba_open() たたは dba_popen() 関数を実行する際、匕数にハンドラ名の䞀぀を指定する必芁がありたす。 実際に利甚可胜なハンドラのリストは、 phpinfo() たたは dba_handlers() をコヌルした際に衚瀺されたす。
It is described as "a programmatic toolkit that provides high-performance built-in database support for both standalone and client / server applications.
蚭定オプション --enable-dba=shared を䜿甚するこずにより、dbm圢匏のデヌタベヌスをサポヌトする動的にロヌ ド可胜なモゞュヌルを有効にしおPHPを構築するこずができたす。 たた、PHPのconfigure行に蚭定スむッチ --with-XXXX を指定するこずにより、少なくずも以䞋のハンドラの䞀぀のサポヌトを远加 する必芁がありたす。
This is available since PHP 5.0.0.
衚 2サポヌトされるDBAハンドラ
Cdb is "a fast, reliable, lightweight package for creating and reading constant databases." It is from the author of qmail and can be found here.
泚意 db2はdb3およびdb4ずコンフリクトしたす。
And since PHP 4.3.0 we support writing (not updating) through the internal cdb library.
泚意 db3はdb2およびdb4ずコンフリクトしたす。
Since PHP 4.3.0 we support creation (not updating) of cdb files when the bundeled cdb library is used.
泚意 db4はdb2およびdb3ずコンフリクトしたす。
However you may use this where files were created in this format.
泚意 これは、PHP 5.0.0で远加されたした。これ以前のバヌゞョンでは、 --with-db3=DIR を䜿甚し、 DIRにdb4ラむブラリのパスを指定する必芁する必芁がありたす。 バヌゞョン4.3.0より前のPHPでは、4.1以降のバヌゞョンのdbを䜿甚 するこずはできたせん。
The actually available list of handlers is displayed by invoking phpinfo() or dba_handlers().
泚意 PHP 4.3.0以降、付属するcdbラむブラリを䜿甚するためにDIRを省略 するこずができたす。この堎合、cdb_makeハンドラが远加され、 cdbファむルを䜜成し、PHPのストリヌムを甚いおネットワヌク䞊の cdbファむルにアクセスできるようになりたす。
You also have to add support for at least one of the following handlers by specifying the --with-XXXX configure switch to your PHP configure line.
泚意 これは、叀い dbm 拡匵モゞュヌル ずの互換性のためにPHP 4.3.0で远加されたした。 このハンドラは、他のハンドラで必芁ずされるラむブラリの぀を むンストヌルするこずができない堎合、そしれ、付属するcdbハンド ラを䜿甚するこずができない堎合にのみ䜿甚しお䞋さい。
It is not possible to use db versions starting from 4.1 with PHP prior to version 4.3.0.
泚意 PHP 4.3.0たでは、db2およびdb3ハンドラの䞡方を远加するこずができた したが、内郚的に䜿甚できるのは片方だけでした。 これは、䞡方のファむル圢匏を䜿甚するこずができないこずを意味したす。 PHP 5.0.0以降、このような蚭定ミスを回避するよう蚭定の確認が行われたす。
flatfile
この拡匵モゞュヌルは蚭定ディレクティブを党く 定矩したせん。
Uee this handler only when you cannot install one of the libraries required by the other handlers and when you cannot use bundeled cdb handler.
関数 dba_open() および dba_popen() は、指定したデヌタベヌスファむルを アクセスするためのハンドルを返したす。このハンドルは、他の党おの dba関数コヌルで䜿甚されたす。
That means that you cannot have both file formats.
この拡匵モゞュヌルは定数を党く定矩したせ ん。
This extension has no configuration directives defined in php.ini.
䟋 1DBAの䟋
This extension has no constants defined.
DBAは、バむナリセヌフでありいかなる制限も受けたせん。 DBA は、䜿甚するデヌタベヌスの実装による党おの制玄を継承したす。
DBA is binary safe and does not have any arbitrary limits.
党おのファむルベヌスのデヌタベヌスは、完党に䜿甚可胜なものに぀いお 新芏に䜜成されたデヌタベヌスのファむルモヌドを蚭定する手段を、 提䟛する必芁がありたす。 ファむルモヌドは、通垞 dba_open() たたは dba_popen() に4番目の匕数ずしお枡されたす。
The file mode is commonly passed as the fourth argument to dba_open() or dba_popen().
dba_firstkey() および dba_nextkey() 関数を甚いお連続的に党おの゚ント リにアクセスするこずができたす。アクセスする際にデヌタベヌスを倉 曎できない可胜性がありたす。
You may not change the database while traversing it.
䟋 2デヌタベヌスぞの連続アクセス
There is no support for indexes or memo fields.
これらの関数は、dBase 圢匏(dbf)のデヌタベヌスに保存されたレコヌド にアクセスするこずを可胜にしたす。
Two concurrent webserver processes modifying the same dBase file will very likely ruin your database.
これらの関数では、むンデックスおよびメモフィヌルドのサポヌトは行わ れたせん。ロックのサポヌトも行われたせん。二぀の Web サヌバヌプロ セスが同時に同じ dBase ファむルを修正しようずした堎合、デヌタベヌ スはほが確実に駄目になっおしたうでしょう。
Records are appended to the end of the file and delete records are kept until you call dbase_pack().
dBaseファむルは、固定長の単玔なシヌケンシャルファむルです。レコヌ ドは、ファむルの終りに远加され、削陀されたレコヌドは dbase_pack() がコヌルされるたで保持されたす。
This extension has no configuration directives defined in php.ini.
付属するdbaseラむブラリを有効にし、これらの関数を䜿甚するには、 --enable-dbase オプションを指定し おPHPをコンパむルする必芁がありたす。
This extension has no constants defined.
この拡匵モゞュヌルは蚭定ディレクティブを党く 定矩したせん。
Home
この拡匵モゞュヌルはリ゜ヌス型を党く定矩し たせん。
dbase_add_record
この拡匵モゞュヌルは定数を党く定矩したせ ん。
This type of database (supported by the Berkeley DB, GDBM, and some system libraries, as well as a built-in flatfile library) stores key / value pairs (as opposed to the full-blown records supported by relational databases).
これらの関数により、レコヌドを dbm 圢匏 のデヌタベヌスに栌玍 できるようになりたす。この圢匏のデヌタベヌス組み蟌みのフラット ファむル・ラむブラリず同様に、Berkeley DB, GDBM 、その他のシステム・ラむブラリにより サポヌトされおいたすは、(リレヌショナル・デヌタベヌスによりサポヌ トされる事现かなレコヌド圢匏ではなく、)キヌず倀の組み合わせを栌玍 したす。
To use this functions you have to compile PHP with support for an underlying database.
泚意 しかし、dbmサポヌトは叀くなっおおり、 (dbm圢匏の)デヌタベヌス抜象化レむダ関数 を代わりに䜿甚するこずが掚奚されおいたす。
In addition you must ensure support for an underlying database or you can use some sytem libraries.
この関数を䜿甚するには、䜿甚するデヌタベヌスのサポヌトを指定しお PHPをコンパむルする必芁がありたす。サポヌトされるデヌタベヌスの リスト を参照しお䞋さい。
The function dbmopen() returns an database identifier which is used by the other dbm-functions.
以䞋の関数を䜿甚するには、 --with-db オプションを指定しおdbmサポヌトを 有効にしおPHPをコンパむルする必芁がありたす。 さらに、䜿甚するデヌタベヌスの サポヌ ト を確認する必芁がありたす。たた、いく぀かのシステムラむブラ リを䜿甚するこずが可胜です。
Example 1.
この拡匵モゞュヌルは蚭定ディレクティブを党く 定矩したせん。
$dbm = dbmopen ("lastseen", "w"); if (dbmexists ($dbm, $userid)) {$last_seen = dbmfetch ($dbm, $userid);} else {dbminsert ($dbm, $userid, time());} do_stuff(); dbmreplace ($dbm, $userid, time()); dbmclose ($dbm);
関数 dbmopen() は、デヌタベヌスIDを返したす。こ のIDは、他のdbm関数で䜿甚されたす。
dbase_replace_record
この拡匵モゞュヌルは定数を党く定矩したせ ん。
dblist
䟋 1DBMの䟋
Use this extension at your own risk.
このモゞュヌルは、 実隓的 なものです。これは、これらの関数の動䜜、関数名は、このドキュメントに曞かれお事項ず同様に告知なく将来的なPHPのリリヌスで倉曎される可胜性がありたす。泚意を喚起するずずもに、このモゞュヌルは䜿甚者のリスクで䜿甚しお䞋さい。
While providing SQL as an additional language interface, it is not really a SQL database in the first place but provides its own AQL query language which is much more influenced by the relational algebra then SQL is.
db++は、ドむツの䌁業 Concept asa により䜜成された高性胜でか぀メモリ䜿甚量ずディスク䜿甚 量が小さいこずを特城ずするリレヌショナルデヌタベヌスシステムです。 db++では、SQLは補助的なむンタヌフェむス原語ずしお提䟛されおおり、 元来のSQLデヌタベヌスであるわけではありたせんが、SQLよりも関係代 数にはるかに匷く圱響された固有のAQLク゚リ蚀語が提䟛されおいたす。
This extension relies on external client libraries so you have to have a db+ + client installed on the system you want to use this extension on.
Concept asaは、垞にオヌプン゜ヌス蚀語のサポヌトに関心を持っお来お おり、db++はPerl、Tclコヌルのむンタヌフェむスを䜕幎も前から有し、 Tclを内郚的なストアドプロシヌゞャ蚀語ずしお䜿甚しおいたす。
There is also a Windows version of db++, but this extension doesn' t support it (yet).
この拡匵モゞュヌルは倖郚クラむアントラむブラリに䟝存しおおり、こ の拡匵モゞュヌルを䜿甚したいシステム䞊にdb++クラむアントがむンス トヌルされおいる必芁がありたす。
You have to run configure with option --with-dbplus to build this extension.
Concept asa が、 Linux及び他のいく぀かのUNIX版の db++デモ版 および ドキュメント を 提䟛しおいたす。たた、Windows版のdb++もありたすが、この拡匵モゞュヌ ルでは(ただ)サポヌトしおいたせん。
If you have installed db+ + in a different place you have add the installation path to the configure option like this: --with-dbplus= / your / installation / path.
この拡匵モゞュヌルの䜜成およびむンストヌルには、db++のクラむアント ラむブラリずヘッダファむルが䞊蚘のようにシステムにむンストヌル されおいるこずが必芁です。この拡匵モゞュヌルを構築するには、 configure にオプション --with-dbplus を付けおコンパむルする必芁がありたす。
A dbplus_relation is a handle to a stored relation or a relation generated as the result of a query.
configure は、クラむアントラむブラリおよび ヘッダファむルをデフォルトのパス /usr/dbplus/ 、 /usr/local/dbplus および /opt/dblus 以䞋で探したす。db++を違う堎所にむ ンストヌルしおいる堎合には、 configure のオプショ ンに --with-dbplus=/your/installation/path のよう にむンストヌルしたパスを远加する必芁がありたす。
Table 1.
この拡匵モゞュヌルは蚭定ディレクティブを党く 定矩したせん。
DBPLUS_ERR_PANIC (integer)
倚くのdb++関数は、 dbplus_relation リ゜ヌス を操䜜たたは返したす。 dbplus_relation は、保存された関係たたは ク゚リの結果ずしお生成された関係ぞのハンドルです。
DBPLUS_ERR_FIFO (integer)
これらの定数は、この拡匵モゞュヌルで定矩されおおり、 この拡匵モゞュヌルがPHP内郚にコンパむルされおいるか実行時に動的にロヌ ドされるかのどちらかの堎合のみ䜿甚可胜です。
DBPLUS_ERR_UNKNOWN (integer)
衚 1DB++゚ラヌコヌド
The dbx functions allow you to access all supported databases using a single calling convention.
dbx モゞュヌルは、デヌタベヌス抜象化レむダ (db 'X'、ただし 'X' は サポヌトされるデヌタベヌスの䞀぀を意味したす)のこずです。dbx 関数 により、サポヌトされる党おのデヌタベヌスを単䞀の呌出衚蚘によりアク セスするこずが可胜になりたす。dbx 関数自䜓は、デヌタベヌスぞの盎 接のむンタヌフェむスを有したせんが、それらのデヌタベヌスをサポヌト するために䜿甚されるモゞュヌルぞのむンタヌフェむスを有したす。
To be able to use a database with the dbx-module, the module must be either linked or loaded into PHP, and the database module must be supported by the dbx-module.
dbxモゞュヌルでデヌタベヌスを䜿甚可胜ずするには、そのモゞュヌルが PHPにリンクされるかロヌドされる必芁があり、そのデヌタベヌスのモ ゞュヌルは、dbxモゞュヌルにサポヌトされおいる必芁がありたす。珟圚、 以䞋のデヌタベヌスがサポヌトされおいたすが、他のデヌタベヌスも远 加される予定です。
Currently, following databases are supported, but others will follow:
FrontBase (PHP 4.1.0以降で利 甚可胜)
Sybase-CT (available from PHP 4.2.0).
Sybase-CT (PHP 4.2.0以降で利 甚可胜)
Oracle (oci8) (available from PHP 4.3.0).
Oracle (oci8) (PHP 4.3.0以降で 利甚可胜)
Documentation for adding additional database support to dbx can be found at http: / /www.guidance.nl / php / dbx / doc /.
dbxにデヌタベヌスのサポヌトを远加するためのドキュメントは、 http://www.guidance.nl/php/dbx/doc/ にありたす。
To get other supported databases to work with the dbx-module refer to their specific documentation.
これらの関数を利甚可胜にするには、 --enable-dbx オプションを䜿甚しお dbxサポヌトを有効にし、たた、䜿甚するデヌタベヌスに関するオプション、 䟋えば、MySQL の堎合は --with-mysql=[DIR] も指定しお PHPをコンパむルする必芁がありたす。 dbxモゞュヌルで他のサポヌトされるデヌタベヌスを動䜜させるには、指定 したドキュメントを参照しお䞋さい。