A PHP callback can be one of the following: A PHP Function.A PHP Method on an object.
PHP のコールバックとして使用できるものは以下のとおりです。 PHP の関数PHP のオブジェクトのメソッド - PEAR
For other PHP files to use functions in the WishDB class, these PHP files need to call a function that creates an object of (instantiates) the WishDB class.
WishDB クラスの関数を使用するその他の PHP ファイルの場合、これらの PHP ファイルは、WishDB クラスのオブジェクトを作成 (「インスタンス化」) する関数を呼び出す必要があります。 - NetBeans
This is not a destructor in the sense that you can "delete" an object and have the destructor called, but in the sense that PHP gives you a callback in the object when PHP is done executing.
これは、オブジェクトを 「削除」 できるという意味ではデストラクタではありませんが、PHP が実行を完了した時点で、PHP によりオブジェクトのコールバック関数としてコールされるという意味でデストラクタと呼ぶことができます。 - PEAR
Examples are: Support for Network protocols Object oriented wrappers that provide easy access to otherwise complicated or less intuitive PHP extensions.
たとえば、 ネットワークプロトコルのサポート 直感的でなかったり複雑であったりする PHP 拡張のオブジェクト指向ラッパ - PEAR
PHPUnit is a family of PEAR packages (PHPUnit2 for PHP 5, PHPUnit for PHP 4) that supports the development of object-oriented PHP applications using the concepts and methods of Agile Software Development, Extreme Programming, Test-Driven Development and Design-by-Contract Development by providing an elegant and robust framework for the creation, execution and analysis of Unit Tests.
PHPUnit は PEAR パッケージの集まり (PHP 5 用には PHPUnit2、そして PHP 4 用には PHPUnit) で、オブジェクト指向でのPHP アプリケーションの開発を支援するものです。 アジャイルなソフトウェア開発、エクストリームプログラミング、テスト駆動開発、規約による設計 (Design-by-Contract)を用いた開発などのために、単体テストを作成・実行・解析するエレガントで堅牢なフレームワークを提供します。 - PEAR