実装なしdeclare
で機能したいだけです。実装は別のファイルにある必要があります。
これは可能ですか?そうするのは一般的な方法ですか?私はC++から来ているので、興味があります。
例:
----- 宣言.php -----------
<?php
function first($name, $age);
function second($country);
?>
----------------- implementations.php -----------
<?php
include (declarations.php);
function first($name, $age)
{
// here is the implementation
}
function second($country)
{
// here is the other implementation
}
?>